Plugin Directory

Changeset 3354777


Ignore:
Timestamp:
09/02/2025 02:07:44 PM (6 months ago)
Author:
skyminds
Message:

release Sky Login Redirect v3.7.10

Location:
sky-login-redirect/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • sky-login-redirect/trunk/changelog.txt

    r3354724 r3354777  
    11== Changelog ==
     2
     3= 3.7.10 - 2025-09-02 =
     4*   Fix - Carbon Fields compatibility
     5*   Improvement - modal login form now using vanilla JS
    26
    37= 3.7.9 - 2025-09-02 =
  • sky-login-redirect/trunk/composer.json

    r3354724 r3354777  
    33    "type": "wordpress-plugin",
    44    "description": "WordPress and Woocommerce Login Redirects made easy",
    5     "version": "3.7.9",
     5    "version": "3.7.10",
    66    "license": "SaaS",
    77    "authors": [
  • sky-login-redirect/trunk/readme.txt

    r3354724 r3354777  
    66Tested up to: 6.8.2
    77Requires PHP: 7
    8 Stable tag: 3.7.9
     8Stable tag: 3.7.10
    99License: GPLv3 or later
    1010
     
    6262== Changelog ==
    6363
     64= 3.7.10 - 2025-09-02 =
     65*   Fix - Carbon Fields compatibility
     66*   Improvement - modal login form now using vanilla JS
     67
    6468= 3.7.9 - 2025-09-02 =
    6569*   Update - CF, FS, Composer
  • sky-login-redirect/trunk/sky-login-redirect.php

    r3354724 r3354777  
    55 * Plugin URI: https://utopique.net/products/sky-login-redirect-premium/
    66 * Description: Redirects users to the page they were prior to logging in or out. Features an awesome login customizer.
    7  * Version: 3.7.9
     7 * Version: 3.7.10
    88 * Author: Utopique
    99 * Author URI: https://utopique.net/
     
    3434}
    3535// current version
    36 define( 'SLR_VERSION', '3.7.9' );
     36define( 'SLR_VERSION', '3.7.10' );
    3737// Plugin root path
    3838define( "SLR_ROOT", trailingslashit( plugin_dir_path( __FILE__ ) ) );
     
    139139     */
    140140    function Sky_Load_carbonfields() {
    141         if ( !is_admin() ) {
    142             return;
    143         }
    144141        include_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
    145142        \Carbon_Fields\Carbon_Fields::boot();
     
    147144         * Remove sidebar creation
    148145         */
    149         // immediately after calling \Carbon_Fields\Carbon_Fields::boot();
    150         $sidebar_manager = \Carbon_Fields\Carbon_Fields::resolve( 'sidebar_manager' );
    151         remove_action( 'admin_enqueue_scripts', array($sidebar_manager, 'enqueue_scripts') );
     146        if ( is_admin() ) {
     147            $sidebar_manager = \Carbon_Fields\Carbon_Fields::resolve( 'sidebar_manager' );
     148            remove_action( 'admin_enqueue_scripts', array($sidebar_manager, 'enqueue_scripts') );
     149        }
    152150    }
    153151
  • sky-login-redirect/trunk/vendor/composer/installed.php

    r3354724 r3354777  
    22    'root' => array(
    33        'name' => 'skyminds/sky-login-redirect',
    4         'pretty_version' => '3.7.9',
    5         'version' => '3.7.9.0',
     4        'pretty_version' => '3.7.10',
     5        'version' => '3.7.10.0',
    66        'reference' => null,
    77        'type' => 'wordpress-plugin',
     
    6262        ),
    6363        'skyminds/sky-login-redirect' => array(
    64             'pretty_version' => '3.7.9',
    65             'version' => '3.7.9.0',
     64            'pretty_version' => '3.7.10',
     65            'version' => '3.7.10.0',
    6666            'reference' => null,
    6767            'type' => 'wordpress-plugin',
Note: See TracChangeset for help on using the changeset viewer.