Changeset 3354777
- Timestamp:
- 09/02/2025 02:07:44 PM (6 months ago)
- Location:
- sky-login-redirect/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
composer.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
sky-login-redirect.php (modified) (4 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sky-login-redirect/trunk/changelog.txt
r3354724 r3354777 1 1 == Changelog == 2 3 = 3.7.10 - 2025-09-02 = 4 * Fix - Carbon Fields compatibility 5 * Improvement - modal login form now using vanilla JS 2 6 3 7 = 3.7.9 - 2025-09-02 = -
sky-login-redirect/trunk/composer.json
r3354724 r3354777 3 3 "type": "wordpress-plugin", 4 4 "description": "WordPress and Woocommerce Login Redirects made easy", 5 "version": "3.7. 9",5 "version": "3.7.10", 6 6 "license": "SaaS", 7 7 "authors": [ -
sky-login-redirect/trunk/readme.txt
r3354724 r3354777 6 6 Tested up to: 6.8.2 7 7 Requires PHP: 7 8 Stable tag: 3.7. 98 Stable tag: 3.7.10 9 9 License: GPLv3 or later 10 10 … … 62 62 == Changelog == 63 63 64 = 3.7.10 - 2025-09-02 = 65 * Fix - Carbon Fields compatibility 66 * Improvement - modal login form now using vanilla JS 67 64 68 = 3.7.9 - 2025-09-02 = 65 69 * Update - CF, FS, Composer -
sky-login-redirect/trunk/sky-login-redirect.php
r3354724 r3354777 5 5 * Plugin URI: https://utopique.net/products/sky-login-redirect-premium/ 6 6 * Description: Redirects users to the page they were prior to logging in or out. Features an awesome login customizer. 7 * Version: 3.7. 97 * Version: 3.7.10 8 8 * Author: Utopique 9 9 * Author URI: https://utopique.net/ … … 34 34 } 35 35 // current version 36 define( 'SLR_VERSION', '3.7. 9' );36 define( 'SLR_VERSION', '3.7.10' ); 37 37 // Plugin root path 38 38 define( "SLR_ROOT", trailingslashit( plugin_dir_path( __FILE__ ) ) ); … … 139 139 */ 140 140 function Sky_Load_carbonfields() { 141 if ( !is_admin() ) {142 return;143 }144 141 include_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php'; 145 142 \Carbon_Fields\Carbon_Fields::boot(); … … 147 144 * Remove sidebar creation 148 145 */ 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 } 152 150 } 153 151 -
sky-login-redirect/trunk/vendor/composer/installed.php
r3354724 r3354777 2 2 'root' => array( 3 3 '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', 6 6 'reference' => null, 7 7 'type' => 'wordpress-plugin', … … 62 62 ), 63 63 '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', 66 66 'reference' => null, 67 67 'type' => 'wordpress-plugin',
Note: See TracChangeset
for help on using the changeset viewer.