Changeset 3094078
- Timestamp:
- 05/28/2024 05:39:48 PM (23 months ago)
- Location:
- woo-cost-of-shipping/trunk
- Files:
-
- 2 deleted
- 3 edited
-
README.txt (modified) (1 diff)
-
assets/js/woocommerce-cost-of-shipping.min.js (deleted)
-
includes/admin/class-wc-cos-admin-orders.php (modified) (1 diff)
-
vendor (deleted)
-
woocommerce-cost-of-shipping.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-cost-of-shipping/trunk/README.txt
r3093396 r3094078 59 59 60 60 == Changelog == 61 62 = 1.5.2 = 63 - Fixed: Changed how conditional was checked to prevent warning output in debug log. 61 64 62 65 = 1.5.1 = -
woo-cost-of-shipping/trunk/includes/admin/class-wc-cos-admin-orders.php
r3093396 r3094078 106 106 global $pagenow; 107 107 global $post_type; 108 $admin_page = $_GET['page']; 109 110 if ( ( $pagenow == 'post.php' && $post_type == 'shop_order' ) || ( $pagenow == 'admin.php' && $admin_page == 'wc-orders' ) ) { 108 109 if ( ( $pagenow == 'post.php' && $post_type == 'shop_order' ) || ( isset( $_GET['page'] ) && $pagenow == 'admin.php' && $_GET['page'] == 'wc-orders' ) ) { 111 110 112 111 $js_file = ''; -
woo-cost-of-shipping/trunk/woocommerce-cost-of-shipping.php
r3093396 r3094078 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. 16 * Version: 1.5.2 7 7 * Author: TheRiteSites 8 8 * Author URI: https://www.theritesites.com … … 18 18 * 19 19 * @package WC_COS 20 * @version 1.5. 120 * @version 1.5.2 21 21 */ 22 22 … … 62 62 * @since 1.0.0 63 63 */ 64 const VERSION = '1.5. 1';64 const VERSION = '1.5.2'; 65 65 66 66 /**
Note: See TracChangeset
for help on using the changeset viewer.