Changeset 3236737
- Timestamp:
- 02/07/2025 05:31:09 PM (13 months ago)
- Location:
- woo-payxpert-gateway/trunk
- Files:
-
- 5 edited
-
.version (modified) (1 diff)
-
README.md (modified) (2 diffs)
-
gateway-payxpert.php (modified) (2 diffs)
-
includes/class-wc-payxpert.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-payxpert-gateway/trunk/.version
r3229413 r3236737 1 1.3. 01 1.3.1 -
woo-payxpert-gateway/trunk/README.md
r3229413 r3236737 5 5 > **Disclaimer:** 6 6 > 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> 8 10 > License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html 9 11 … … 14 16 15 17 ### Updates, Fixes, and Features 18 - **1.3.1**: Fixed an issue with home phone parameter 16 19 - **1.3.0**: Removed iframe support, added fully functional seamless integration. 17 20 - **1.2.9**: Introduced multi-language support (English, Spanish, French). -
woo-payxpert-gateway/trunk/gateway-payxpert.php
r3229413 r3236737 4 4 * Plugin URI: http://www.payxpert.com 5 5 * Description: WooCommerce PayXpert Gateway plugin 6 * Version: 1.3. 06 * Version: 1.3.1 7 7 * Author: PayXpert 8 8 * Author URI: http://www.payxpert.com … … 76 76 define( "PX_URL", plugins_url( '', PX_FILE ) ); 77 77 define( "PX_ASSETS", PX_URL . '/assets' ); 78 define("PX_PLUGIN_VERSION", '1.3. 0');78 define("PX_PLUGIN_VERSION", '1.3.1'); 79 79 } 80 80 -
woo-payxpert-gateway/trunk/includes/class-wc-payxpert.php
r3229413 r3236737 255 255 $shopper->setAddress1(substr(trim($orderdetails->get_billing_address_1() . ' ' . $orderdetails->get_billing_address_2()), 0, 255)); 256 256 $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)); 258 258 $shopper->setEmail($orderdetails->get_billing_email()); 259 259 -
woo-payxpert-gateway/trunk/readme.txt
r3229453 r3236737 3 3 Tags: payment, paymentgateway, woocommerce, ecommerce 4 4 Requires PHP: 8.0 5 Requires at least: 4.0 & WooCommerce 2.6+ 6 Tested up to: 4.8 & Woocommerce 9.3 5 Requires at least: 4.0 6 Tested up to: 6.7.1 7 WooCommerce at least: 2.6 8 Woocommerce up to: 9.3 7 9 Stable tag: 1.3.0 8 10 License: Apache 2.0 … … 31 33 32 34 == Changelog == 35 36 = v1.3.1 = 37 * Fixed an issue with home phone parameter 33 38 34 39 = v1.3.0 =
Note: See TracChangeset
for help on using the changeset viewer.