Plugin Directory

Changeset 3257148


Ignore:
Timestamp:
03/17/2025 01:18:32 PM (10 months ago)
Author:
aarsiv
Message:

Last name added to request

Location:
shipi
Files:
15 added
2 edited

Legend:

Unmodified
Added
Removed
  • shipi/trunk/readme.txt

    r3251242 r3257148  
    44Requires at least: 4.0.1
    55Tested up to: 6.7
    6 Stable tag: 1.1.1
     6Stable tag: 1.1.2
    77Requires PHP: 5.6
    88License: GPLv3 or later License
     
    4040
    4141== Changelog ==
     42= 1.1.2 =
     43* Last Name added to shipment request.
    4244= 1.1.1 =
    4345* Bug fix on the UK postal code
  • shipi/trunk/shipi.php

    r3251242 r3257148  
    33 * Plugin Name: Shipi
    44 * Description: 15+ Shipping carriers in one package.
    5  * Version: 1.1.1
     5 * Version: 1.1.2
    66 * Author: Shipi
    77 * Author URI: https://myshipi.com/
     
    378378                if($order->get_shipping_first_name() != ""){
    379379                    $reciver_address =  array(
    380                         "r_name" => $order->get_shipping_first_name(),
     380                        "r_name" => $order->get_shipping_first_name() . " " . $order->get_shipping_last_name(),
    381381                        "r_email" => $order->get_billing_email(),
    382382                        "r_phone" => $order->get_billing_phone(),
     
    392392                }else{
    393393                    $reciver_address =  array(
    394                         "r_name" => $order->get_billing_first_name(),
     394                        "r_name" => $order->get_billing_first_name() . " " . $order->get_billing_last_name(),
    395395                        "r_email" => $order->get_billing_email(),
    396396                        "r_phone" => $order->get_billing_phone(),
Note: See TracChangeset for help on using the changeset viewer.