Changeset 3093396
- Timestamp:
- 05/27/2024 05:41:53 PM (23 months ago)
- Location:
- woo-cost-of-shipping/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
includes/admin/class-wc-cos-admin-orders.php (modified) (2 diffs)
-
woocommerce-cost-of-shipping.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-cost-of-shipping/trunk/README.txt
r3092786 r3093396 59 59 60 60 == Changelog == 61 62 = 1.5.1 = 63 - Fixed: WooCommerce admin page changes prevented javascript enqueueing. 61 64 62 65 = 1.5.0 = -
woo-cost-of-shipping/trunk/includes/admin/class-wc-cos-admin-orders.php
r3092786 r3093396 106 106 global $pagenow; 107 107 global $post_type; 108 109 if ( $pagenow == 'post.php' && $post_type == 'shop_order' ) { 108 $admin_page = $_GET['page']; 109 110 if ( ( $pagenow == 'post.php' && $post_type == 'shop_order' ) || ( $pagenow == 'admin.php' && $admin_page == 'wc-orders' ) ) { 110 111 111 112 $js_file = ''; … … 139 140 global $pagenow; 140 141 global $post_type; 141 142 if ( $pagenow == 'post.php' && $post_type == 'shop_order' ) { 142 $admin_page = $_GET['page']; 143 144 if ( ( $pagenow == 'post.php' && $post_type == 'shop_order' ) || ( $pagenow == 'admin.php' && $admin_page == 'wc-orders' ) ) { 143 145 144 146 $cs_file = ''; -
woo-cost-of-shipping/trunk/woocommerce-cost-of-shipping.php
r3092786 r3093396 4 4 * Plugin URI: https://www.theritesites.com/plugins/woocommerce-cost-of-shipping 5 5 * Description: Allows the association of the cost of shipping to WooCommerce orders 6 * Version: 1.5. 06 * Version: 1.5.1 7 7 * Author: TheRiteSites 8 8 * Author URI: https://www.theritesites.com … … 18 18 * 19 19 * @package WC_COS 20 * @version 1.5. 020 * @version 1.5.1 21 21 */ 22 22 … … 62 62 * @since 1.0.0 63 63 */ 64 const VERSION = '1.5. 0';64 const VERSION = '1.5.1'; 65 65 66 66 /**
Note: See TracChangeset
for help on using the changeset viewer.