Plugin Directory

Changeset 2629670


Ignore:
Timestamp:
11/15/2021 09:59:50 AM (4 years ago)
Author:
redboxsa
Message:

Version 1.23

Location:
redbox-pickup
Files:
3 edited
8 copied

Legend:

Unmodified
Added
Removed
  • redbox-pickup/tags/1.23/front/front.php

    r2629642 r2629670  
    126126
    127127            function redbox_create_shipment( $order_id, $posted_data, $order ) {
     128                $note = 'Creating redbox shipments';
     129                $order->add_order_note( $note );
    128130                if (!$order) {
    129131                    $note = 'RedBox error: Order not found';
     
    139141                    "store_url" => get_home_url(),
    140142                    "reference" => $order_id,
    141                     "point_id" => $order->get_meta( '_redbox_point_id' ),
     143                    "point_id" => $_POST['redbox_point_id'],
    142144                    "customer_name" => $customerData['name'],
    143145                    "customer_phone" => $customerData['phone'],
  • redbox-pickup/tags/1.23/readme.txt

    r2629642 r2629670  
    55Requires at least: 3.3
    66Tested up to: 5.5.1
    7 Stable tag: 1.22
     7Stable tag: 1.23
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • redbox-pickup/tags/1.23/redbox.php

    r2629642 r2629670  
    44        * Description: This plugin allows customers pickup package at RedBox Locker.
    55        * Plugin URI: https://woocommerce.com/
    6         * Version: 1.22
     6        * Version: 1.23
    77        * Author: RedBox
    88        * Author URI: https://redboxsa.com
  • redbox-pickup/trunk/front/front.php

    r2629642 r2629670  
    126126
    127127            function redbox_create_shipment( $order_id, $posted_data, $order ) {
     128                $note = 'Creating redbox shipments';
     129                $order->add_order_note( $note );
    128130                if (!$order) {
    129131                    $note = 'RedBox error: Order not found';
     
    139141                    "store_url" => get_home_url(),
    140142                    "reference" => $order_id,
    141                     "point_id" => $order->get_meta( '_redbox_point_id' ),
     143                    "point_id" => $_POST['redbox_point_id'],
    142144                    "customer_name" => $customerData['name'],
    143145                    "customer_phone" => $customerData['phone'],
  • redbox-pickup/trunk/readme.txt

    r2629642 r2629670  
    55Requires at least: 3.3
    66Tested up to: 5.5.1
    7 Stable tag: 1.22
     7Stable tag: 1.23
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • redbox-pickup/trunk/redbox.php

    r2629642 r2629670  
    44        * Description: This plugin allows customers pickup package at RedBox Locker.
    55        * Plugin URI: https://woocommerce.com/
    6         * Version: 1.22
     6        * Version: 1.23
    77        * Author: RedBox
    88        * Author URI: https://redboxsa.com
Note: See TracChangeset for help on using the changeset viewer.