Changeset 3459382
- Timestamp:
- 02/11/2026 09:57:06 PM (6 weeks ago)
- Location:
- routeapp/trunk
- Files:
-
- 3 edited
-
public/class-routeapp-public.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
routeapp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
routeapp/trunk/public/class-routeapp-public.php
r3452273 r3459382 951 951 $updated |= $this->updateRouteOrderMetaData( $order, $is_hpos, '_routeapp_cancel_order_statuses', $acceptedCanceledStatuses ); 952 952 953 //MSS-6533: Add local pickupflag and excluded shipping methods meta data to the order954 $updated |= $this->updateRouteOrderMetaData( $order, $is_hpos,'_routeapp_order_ local_pickup', $this->routeapp_resolve_local_pickup_flag( $order ) );953 //MSS-6533: Add ship to store flag and excluded shipping methods meta data to the order 954 $updated |= $this->updateRouteOrderMetaData( $order, $is_hpos,'_routeapp_order_ship_to_store', $this->routeapp_resolve_ship_to_store_flag( $order ) ); 955 955 $updated |= $this->updateRouteOrderMetaData( $order, $is_hpos, '_routeapp_excluded_shipping_methods', $this->routeapp_get_excluded_shipping_methods()); 956 956 … … 1787 1787 * @return int 1 = local pickup, 0 = not local pickup 1788 1788 */ 1789 public function routeapp_resolve_ local_pickup_flag( WC_Order $order = null): int {1789 public function routeapp_resolve_ship_to_store_flag( WC_Order $order = null): int { 1790 1790 $excluded_methods = $this->routeapp_get_excluded_shipping_methods(); 1791 1791 if ( empty( $excluded_methods ) || ! is_array( $excluded_methods ) ) { -
routeapp/trunk/readme.txt
r3452273 r3459382 6 6 Requires at least: 4.0 7 7 Tested up to: 6.7.1 8 Stable tag: 2.2.3 68 Stable tag: 2.2.37 9 9 Requires PHP: 5.6 10 10 License: GPLv2 or later … … 106 106 107 107 == Changelog == 108 109 = 2.2.37 = 110 * Fix 2.2.35 flag problems and add a new Metadata flag to identify ship to store orders 108 111 109 112 = 2.2.36 = -
routeapp/trunk/routeapp.php
r3452273 r3459382 10 10 * Plugin URI: https://route.com/for-merchants/ 11 11 * Description: Route allows shoppers to insure their orders with one-click during checkout, adding a layer of 3rd party trust while improving the customer shopping experience. 12 * Version: 2.2.3 612 * Version: 2.2.37 13 13 * Author: Route 14 14 * Author URI: https://route.com/ … … 26 26 * Currently plugin version. 27 27 */ 28 define( 'ROUTEAPP_VERSION', '2.2.3 6' );28 define( 'ROUTEAPP_VERSION', '2.2.37' ); 29 29 30 30 /**
Note: See TracChangeset
for help on using the changeset viewer.