Plugin Directory

Changeset 3236737


Ignore:
Timestamp:
02/07/2025 05:31:09 PM (13 months ago)
Author:
payxpert
Message:
  • Fixed an issue with home phone parameter
Location:
woo-payxpert-gateway/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • woo-payxpert-gateway/trunk/.version

    r3229413 r3236737  
    1 1.3.0
     11.3.1
  • woo-payxpert-gateway/trunk/README.md

    r3229413 r3236737  
    55> **Disclaimer:**
    66> The author of this plugin cannot be held responsible for any issues arising from the use of this software. There is no warranty of any kind. By using this plugin, you agree to these terms.
    7 > License: GPL-2.0-or-later
     7>
     8> Tested up to: 6.7.1<br>
     9> License: GPL-2.0-or-later<br>
    810> License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    911
     
    1416
    1517### Updates, Fixes, and Features
     18- **1.3.1**: Fixed an issue with home phone parameter
    1619- **1.3.0**: Removed iframe support, added fully functional seamless integration.
    1720- **1.2.9**: Introduced multi-language support (English, Spanish, French).
  • woo-payxpert-gateway/trunk/gateway-payxpert.php

    r3229413 r3236737  
    44 * Plugin URI: http://www.payxpert.com
    55 * Description: WooCommerce PayXpert Gateway plugin
    6  * Version: 1.3.0
     6 * Version: 1.3.1
    77 * Author: PayXpert
    88 * Author URI: http://www.payxpert.com
     
    7676        define( "PX_URL", plugins_url( '', PX_FILE ) );
    7777        define( "PX_ASSETS", PX_URL . '/assets' );
    78         define("PX_PLUGIN_VERSION", '1.3.0');
     78        define("PX_PLUGIN_VERSION", '1.3.1');
    7979    }
    8080
  • woo-payxpert-gateway/trunk/includes/class-wc-payxpert.php

    r3229413 r3236737  
    255255        $shopper->setAddress1(substr(trim($orderdetails->get_billing_address_1() . ' ' . $orderdetails->get_billing_address_2()), 0, 255));
    256256        $shopper->setZipcode(substr($orderdetails->get_billing_postcode(), 0, 10))->setCity(substr($orderdetails->get_billing_city(), 0, 50))->setState(substr($orderdetails->get_billing_state(), 0, 30))->setCountryCode(substr(trim($orderdetails->get_billing_country()), 0, 20));
    257         $shopper->setHomePhonePrefix("212")->setHomePhone(substr(trim($orderdetails->get_billing_country()), 0, 20));
     257        $shopper->setHomePhonePrefix("212")->setHomePhone(substr(trim($orderdetails->get_billing_phone()), 0, 20));
    258258        $shopper->setEmail($orderdetails->get_billing_email());
    259259
  • woo-payxpert-gateway/trunk/readme.txt

    r3229453 r3236737  
    33Tags: payment, paymentgateway, woocommerce, ecommerce
    44Requires PHP: 8.0
    5 Requires at least: 4.0 & WooCommerce 2.6+
    6 Tested up to: 4.8 & Woocommerce 9.3
     5Requires at least: 4.0
     6Tested up to: 6.7.1
     7WooCommerce at least: 2.6
     8Woocommerce up to: 9.3
    79Stable tag: 1.3.0
    810License: Apache 2.0
     
    3133
    3234== Changelog ==
     35
     36= v1.3.1 =
     37* Fixed an issue with home phone parameter
    3338
    3439= v1.3.0 =
Note: See TracChangeset for help on using the changeset viewer.