Changeset 3468026
- Timestamp:
- 02/23/2026 09:12:15 PM (5 weeks ago)
- Location:
- droproyal
- Files:
-
- 7 added
- 1 deleted
- 2 edited
-
tags/0.2.4 (deleted)
-
tags/0.2.5 (added)
-
tags/0.2.5/assets (added)
-
tags/0.2.5/assets/admin.css (added)
-
tags/0.2.5/droproyal.php (added)
-
tags/0.2.5/readme.txt (added)
-
trunk/assets (added)
-
trunk/assets/admin.css (added)
-
trunk/droproyal.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
droproyal/trunk/droproyal.php
r3466548 r3468026 4 4 * Plugin URI: https://app.droproyal.com 5 5 * Description: Connect WooCommerce to DropRoyal with one-click onboarding. 6 * Version: 0.2. 46 * Version: 0.2.5 7 7 * Requires at least: 6.2 8 8 * Requires PHP: 7.4 … … 18 18 } 19 19 20 define('DRWC_VERSION', '0.2. 4');20 define('DRWC_VERSION', '0.2.5'); 21 21 define('DRWC_OPTION_KEY', 'drwc_connector_options'); 22 22 define('DRWC_MENU_SLUG', 'droproyal-woo-connector'); … … 544 544 545 545 function drwc_admin_enqueue_assets($hook) { 546 if ( $hook !== 'toplevel_page_' . DRWC_MENU_SLUG) {546 if (!drwc_is_plugin_page()) { 547 547 return; 548 548 } 549 549 wp_enqueue_style( 550 550 'drwc-admin', 551 plugin s_url('assets/admin.css', __FILE__),551 plugin_dir_url(__FILE__) . 'assets/admin.css', 552 552 array(), 553 553 DRWC_VERSION -
droproyal/trunk/readme.txt
r3466548 r3468026 1 1 === DropRoyal === 2 Contributors: DropRoyal2 Contributors: karzan83 3 3 Tags: woocommerce, dropshipping, connector 4 4 Requires at least: 6.2 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 0.2. 47 Stable tag: 0.2.5 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 39 39 40 40 == Changelog == 41 42 = 0.2.5 = 43 44 * Fixed admin CSS enqueue path for WordPress.org plugin directory installs. 45 * Enqueue now targets the DropRoyal plugin page reliably. 41 46 42 47 = 0.2.4 =
Note: See TracChangeset
for help on using the changeset viewer.