Changeset 3402368
- Timestamp:
- 11/25/2025 09:48:31 AM (3 months ago)
- Location:
- osom-modal-login
- Files:
-
- 22 added
- 2 edited
-
tags/1.5.2 (added)
-
tags/1.5.2/LICENSE (added)
-
tags/1.5.2/README.txt (added)
-
tags/1.5.2/assets (added)
-
tags/1.5.2/assets/css (added)
-
tags/1.5.2/assets/css/admin-osom-modal-login.css (added)
-
tags/1.5.2/assets/css/osom-modal-login.css (added)
-
tags/1.5.2/assets/img (added)
-
tags/1.5.2/assets/img/close.svg (added)
-
tags/1.5.2/assets/img/icon.png (added)
-
tags/1.5.2/assets/img/info.png (added)
-
tags/1.5.2/assets/js (added)
-
tags/1.5.2/assets/js/osom-modal-login.js (added)
-
tags/1.5.2/inc (added)
-
tags/1.5.2/inc/osom-admin.php (added)
-
tags/1.5.2/index.php (added)
-
tags/1.5.2/languages (added)
-
tags/1.5.2/languages/osom-ml-es_ES.mo (added)
-
tags/1.5.2/languages/osom-ml-es_ES.po (added)
-
tags/1.5.2/languages/osom-ml.pot (added)
-
tags/1.5.2/osom-modal-login.php (added)
-
tags/1.5.2/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/osom-modal-login.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
osom-modal-login/trunk/README.txt
r3286350 r3402368 4 4 Tags: Login, modal, logout, login form, custom login, wordpress login, login popup, popup login form, modal popup login, login popup modal, registration, lost password 5 5 Requires at least: 5.0 6 Tested up to: 6. 87 Stable tag: 1.5. 16 Tested up to: 6.9 7 Stable tag: 1.5.2 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 123 123 == Changelog == 124 124 125 = 1.5.2 = 126 * Improve style enqueueing (thanks @adriansoewono for the suggestion ) 125 127 = 1.5.1 = 126 128 * Fix deprecation for PHP +8.1. -
osom-modal-login/trunk/osom-modal-login.php
r3273538 r3402368 6 6 * Plugin URI: https://osompress.com 7 7 * Description: Osom Modal Login lets you easily create a modal box displaying the WordPress login form. It automatically adds a menu item named "Login" at the end of the selected menu which will launch the login modal box one you click on it. 8 * Version: 1.5. 18 * Version: 1.5.2 9 9 * Author: OsomPress 10 10 * Author URI: https://osompress.com … … 27 27 } 28 28 29 define( 'OSOM_ML_VERSION', '1.5. 1' );29 define( 'OSOM_ML_VERSION', '1.5.2' ); 30 30 31 31 add_action( 'init', __NAMESPACE__ . '\osom_ml_init' ); … … 47 47 function osom_ml_admin_styles() { 48 48 $plugin_url = plugin_dir_url( __FILE__ ); 49 wp_enqueue_style( 'osom-ml-admin-style', $plugin_url . '/assets/css/admin-osom-modal-login.css', OSOM_ML_VERSION, true);49 wp_enqueue_style( 'osom-ml-admin-style', $plugin_url . '/assets/css/admin-osom-modal-login.css', OSOM_ML_VERSION, 'all' ); 50 50 wp_enqueue_style( 'dashicons' ); 51 51 } … … 55 55 function osom_ml_styles() { 56 56 $plugin_url = plugin_dir_url( __FILE__ ); 57 wp_enqueue_style( 'osom-ml-style', $plugin_url . '/assets/css/osom-modal-login.css', OSOM_ML_VERSION, true);57 wp_enqueue_style( 'osom-ml-style', $plugin_url . '/assets/css/osom-modal-login.css', OSOM_ML_VERSION, 'all' ); 58 58 wp_enqueue_style( 'dashicons' ); 59 59 } … … 64 64 $plugin_url = plugin_dir_url( __FILE__ ); 65 65 wp_enqueue_script( 'osom-ml-script', $plugin_url . '/assets/js/osom-modal-login.js', '', OSOM_ML_VERSION, true ); 66 67 66 } 68 67
Note: See TracChangeset
for help on using the changeset viewer.