Plugin Directory

Changeset 3037759


Ignore:
Timestamp:
02/19/2024 09:21:51 AM (2 years ago)
Author:
SmartSend
Message:

tagging version 8.1.1

Location:
smart-send-logistics
Files:
3 edited
6 copied

Legend:

Unmodified
Added
Removed
  • smart-send-logistics/tags/8.1.1/includes/class-ss-shipping-wc-order.php

    r3035681 r3037759  
    77use Automattic\WooCommerce\Utilities\OrderUtil;
    88use Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController;
    9 use WP_Post;
    109use WooCommerce\Classes\WC_Order;
    1110
     
    8382        private function register_bulk_order_actions()
    8483        {
    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()
    8686                ? '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
    8888
    8989            // An actions in the dropdown
  • smart-send-logistics/tags/8.1.1/readme.txt

    r3035681 r3037759  
    99Requires at least: 3.0.1
    1010Tested up to: 6.3
    11 Stable tag: 8.1.0
     11Stable tag: 8.1.1
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    201201== Changelog ==
    202202
     203= 8.1.1 =
     204* Fixing issue that order mass actions were missing on non-HPOS sites
     205* Removing PHP warning
     206
    203207= 8.1.0 =
    204208* Add High-Performance Order Storage (HPOS) compatibility
  • smart-send-logistics/tags/8.1.1/smart-send-logistics.php

    r3035681 r3037759  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.1.0
     9 * Version: 8.1.1
    1010 * WC requires at least: 4.7.0
    1111 * WC tested up to: 7.9
     
    3535    {
    3636
    37         private $version = "8.1.0";
     37        private $version = "8.1.1";
    3838
    3939        /**
  • smart-send-logistics/trunk/includes/class-ss-shipping-wc-order.php

    r3035681 r3037759  
    77use Automattic\WooCommerce\Utilities\OrderUtil;
    88use Automattic\WooCommerce\Internal\DataStores\Orders\CustomOrdersTableController;
    9 use WP_Post;
    109use WooCommerce\Classes\WC_Order;
    1110
     
    8382        private function register_bulk_order_actions()
    8483        {
    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()
    8686                ? '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
    8888
    8989            // An actions in the dropdown
  • smart-send-logistics/trunk/readme.txt

    r3035681 r3037759  
    99Requires at least: 3.0.1
    1010Tested up to: 6.3
    11 Stable tag: 8.1.0
     11Stable tag: 8.1.1
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    201201== Changelog ==
    202202
     203= 8.1.1 =
     204* Fixing issue that order mass actions were missing on non-HPOS sites
     205* Removing PHP warning
     206
    203207= 8.1.0 =
    204208* Add High-Performance Order Storage (HPOS) compatibility
  • smart-send-logistics/trunk/smart-send-logistics.php

    r3035681 r3037759  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.1.0
     9 * Version: 8.1.1
    1010 * WC requires at least: 4.7.0
    1111 * WC tested up to: 7.9
     
    3535    {
    3636
    37         private $version = "8.1.0";
     37        private $version = "8.1.1";
    3838
    3939        /**
Note: See TracChangeset for help on using the changeset viewer.