Plugin Directory

Changeset 3459382


Ignore:
Timestamp:
02/11/2026 09:57:06 PM (6 weeks ago)
Author:
routedev
Message:

Fix 2.2.35 flag problems and add a new Metadata flag to identify ship to store orders

Location:
routeapp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • routeapp/trunk/public/class-routeapp-public.php

    r3452273 r3459382  
    951951        $updated |= $this->updateRouteOrderMetaData( $order, $is_hpos, '_routeapp_cancel_order_statuses', $acceptedCanceledStatuses );
    952952
    953         //MSS-6533: Add local pickup flag and excluded shipping methods meta data to the order
    954         $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 ) );
    955955        $updated |= $this->updateRouteOrderMetaData( $order, $is_hpos, '_routeapp_excluded_shipping_methods', $this->routeapp_get_excluded_shipping_methods());
    956956
     
    17871787     * @return int 1 = local pickup, 0 = not local pickup
    17881788     */
    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 {
    17901790        $excluded_methods = $this->routeapp_get_excluded_shipping_methods();
    17911791        if ( empty( $excluded_methods ) || ! is_array( $excluded_methods ) ) {
  • routeapp/trunk/readme.txt

    r3452273 r3459382  
    66Requires at least: 4.0
    77Tested up to: 6.7.1
    8 Stable tag: 2.2.36
     8Stable tag: 2.2.37
    99Requires PHP: 5.6
    1010License: GPLv2 or later
     
    106106
    107107== 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
    108111
    109112= 2.2.36 =
  • routeapp/trunk/routeapp.php

    r3452273 r3459382  
    1010 * Plugin URI:        https://route.com/for-merchants/
    1111 * 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.36
     12 * Version:           2.2.37
    1313 * Author:            Route
    1414 * Author URI:        https://route.com/
     
    2626 * Currently plugin version.
    2727 */
    28 define( 'ROUTEAPP_VERSION', '2.2.36' );
     28define( 'ROUTEAPP_VERSION', '2.2.37' );
    2929
    3030/**
Note: See TracChangeset for help on using the changeset viewer.