Plugin Directory

Changeset 3483792


Ignore:
Timestamp:
03/16/2026 11:37:25 AM (2 weeks ago)
Author:
shipmatedev
Message:

local pickup bug fixed

Location:
mailplus-shipmate
Files:
8 added
3 edited

Legend:

Unmodified
Added
Removed
  • mailplus-shipmate/trunk/includes/mailplus-shipmate-rest-endpoints.php

    r3483751 r3483792  
    8282}
    8383
    84 function mailplus_shipmate_is_local_pickup($order_id) {
     84function mailplus_shipmate_is_local_pickup(WP_REST_Request $request) {
     85    $payload = $request->get_json_params();
     86    $order_id = intval( $payload['order_id'] );
     87   
    8588    $order = wc_get_order( $order_id );
    8689    $is_local_pickup = false;
  • mailplus-shipmate/trunk/mailplus-shipmate.php

    r3483751 r3483792  
    33 * Plugin Name: MailPlus Shipmate
    44 * Description: As an Australian shipping service, MailPlus Shipmate integrates MailPlus delivery options with WooCommerce, providing real-time shipping rates and automated parcel management through your MailPlus account.
    5  * Version: 0.2.0
     5 * Version: 0.2.1
    66 * Author: MailPlus
    77 * License: GPL v2 or later
  • mailplus-shipmate/trunk/readme.txt

    r3483751 r3483792  
    55Tested up to: 6.9
    66Requires PHP: 8.2
    7 Stable tag: 0.2.0
     7Stable tag: 0.2.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.