Changeset 3037759
- Timestamp:
- 02/19/2024 09:21:51 AM (2 years ago)
- Location:
- smart-send-logistics
- Files:
-
- 3 edited
- 6 copied
-
tags/8.1.1 (copied) (copied from smart-send-logistics/trunk)
-
tags/8.1.1/includes/class-ss-shipping-wc-method.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-method.php)
-
tags/8.1.1/includes/class-ss-shipping-wc-order.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-order.php) (2 diffs)
-
tags/8.1.1/includes/frontend/class-ss-shipping-frontend.php (copied) (copied from smart-send-logistics/trunk/includes/frontend/class-ss-shipping-frontend.php)
-
tags/8.1.1/readme.txt (copied) (copied from smart-send-logistics/trunk/readme.txt) (2 diffs)
-
tags/8.1.1/smart-send-logistics.php (copied) (copied from smart-send-logistics/trunk/smart-send-logistics.php) (2 diffs)
-
trunk/includes/class-ss-shipping-wc-order.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smart-send-logistics.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smart-send-logistics/tags/8.1.1/includes/class-ss-shipping-wc-order.php
r3035681 r3037759 7 7 use Automattic\WooCommerce\Utilities\OrderUtil; 8 8 use Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController; 9 use WP_Post;10 9 use WooCommerce\Classes\WC_Order; 11 10 … … 83 82 private function register_bulk_order_actions() 84 83 { 85 $screen = class_exists( '\Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController' ) && wc_get_container()->get(CustomOrdersTableController::class)->custom_orders_table_usage_is_enabled() 84 $screen = class_exists( '\Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController' ) 85 && wc_get_container()->get(CustomOrdersTableController::class)->custom_orders_table_usage_is_enabled() 86 86 ? 'woocommerce_page_wc-orders' // function not available wc_get_page_screen_id( 'shop-order' ) 87 : ' shop_order';87 : 'edit-shop_order'; // Index page is called 'edit-shop_order' and not just 'shop_order' as stated in the url 88 88 89 89 // An actions in the dropdown -
smart-send-logistics/tags/8.1.1/readme.txt
r3035681 r3037759 9 9 Requires at least: 3.0.1 10 10 Tested up to: 6.3 11 Stable tag: 8.1. 011 Stable tag: 8.1.1 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 201 201 == Changelog == 202 202 203 = 8.1.1 = 204 * Fixing issue that order mass actions were missing on non-HPOS sites 205 * Removing PHP warning 206 203 207 = 8.1.0 = 204 208 * Add High-Performance Order Storage (HPOS) compatibility -
smart-send-logistics/tags/8.1.1/smart-send-logistics.php
r3035681 r3037759 7 7 * Author URI: https://www.smartsend.io 8 8 * Text Domain: smart-send-logistics 9 * Version: 8.1. 09 * Version: 8.1.1 10 10 * WC requires at least: 4.7.0 11 11 * WC tested up to: 7.9 … … 35 35 { 36 36 37 private $version = "8.1. 0";37 private $version = "8.1.1"; 38 38 39 39 /** -
smart-send-logistics/trunk/includes/class-ss-shipping-wc-order.php
r3035681 r3037759 7 7 use Automattic\WooCommerce\Utilities\OrderUtil; 8 8 use Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController; 9 use WP_Post;10 9 use WooCommerce\Classes\WC_Order; 11 10 … … 83 82 private function register_bulk_order_actions() 84 83 { 85 $screen = class_exists( '\Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController' ) && wc_get_container()->get(CustomOrdersTableController::class)->custom_orders_table_usage_is_enabled() 84 $screen = class_exists( '\Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController' ) 85 && wc_get_container()->get(CustomOrdersTableController::class)->custom_orders_table_usage_is_enabled() 86 86 ? 'woocommerce_page_wc-orders' // function not available wc_get_page_screen_id( 'shop-order' ) 87 : ' shop_order';87 : 'edit-shop_order'; // Index page is called 'edit-shop_order' and not just 'shop_order' as stated in the url 88 88 89 89 // An actions in the dropdown -
smart-send-logistics/trunk/readme.txt
r3035681 r3037759 9 9 Requires at least: 3.0.1 10 10 Tested up to: 6.3 11 Stable tag: 8.1. 011 Stable tag: 8.1.1 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 201 201 == Changelog == 202 202 203 = 8.1.1 = 204 * Fixing issue that order mass actions were missing on non-HPOS sites 205 * Removing PHP warning 206 203 207 = 8.1.0 = 204 208 * Add High-Performance Order Storage (HPOS) compatibility -
smart-send-logistics/trunk/smart-send-logistics.php
r3035681 r3037759 7 7 * Author URI: https://www.smartsend.io 8 8 * Text Domain: smart-send-logistics 9 * Version: 8.1. 09 * Version: 8.1.1 10 10 * WC requires at least: 4.7.0 11 11 * WC tested up to: 7.9 … … 35 35 { 36 36 37 private $version = "8.1. 0";37 private $version = "8.1.1"; 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.