Changeset 3370715
- Timestamp:
- 09/30/2025 09:21:49 PM (6 months ago)
- Location:
- bulletproof-checkout-lite/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
bulletproof-checkout-lite.php (modified) (2 diffs)
-
includes/class-wc-bulletproof-payment-gateway-lite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bulletproof-checkout-lite/trunk/README.txt
r3368943 r3370715 1 1 === BulletProof Payment Gateway === 2 2 Contributors: bulletproofcheckout 3 Tags: woocommerce, 3DS, payment gateway, bulletproof, NMI, chargeback3 Tags: woocommerce, 3DS, payment gateway, bulletproof, chargeback, fraud prevention 4 4 WC requires at least: 5.0 5 WC tested up to: 9.6.26 Tested up to: 6. 7.27 Stable tag: 1.0. 165 WC tested up to: 10.2.2 6 Tested up to: 6.8.2 7 Stable tag: 1.0.21 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 182 182 183 183 ### Countries Served 184 - Currently we support US, CA,and UK. We receive Credit Cards Worldwide.184 - Currently we support merchants located on USA, Canada, Mexico and UK. We receive Credit Cards Worldwide. 185 185 186 186 … … 231 231 Extra payment information at the Order detail 232 232 Tested with WooCommerce version 10.2.1 233 = 1.0.20 = 234 Tested with WooCommerce version 10.2.2 235 = 1.0.21 = 236 Added zip code denial reason at the Checkout -
bulletproof-checkout-lite/trunk/bulletproof-checkout-lite.php
r3368943 r3370715 5 5 * Plugin URI: https://www.bulletproof-checkout.com/ 6 6 * Description: Protect your credit card payments with 3D Secure (3DS) and say goodbye to chargebacks. 7 * Version: 1.0.2 07 * Version: 1.0.21 8 8 * Author: BulletProof Checkout <support@bulletproof-checkout.com> 9 9 * Author URI: https://www.bulletproof-checkout.com/ … … 12 12 * Text Domain: bulletproof-checkout-lite 13 13 * WC requires at least: 5.0 14 * WC tested up to: 10.2. 114 * WC tested up to: 10.2.2 15 15 * Tested up to: 6.8.2 16 16 * Requires PHP: 7.4 -
bulletproof-checkout-lite/trunk/includes/class-wc-bulletproof-payment-gateway-lite.php
r3368943 r3370715 1376 1376 } 1377 1377 } 1378 // check if state is longer than 3 characters 1379 if (strlen($the_state) > 3) { 1380 $the_state = $this->left($the_state, 3); 1381 } 1382 if (strlen($the_state_shipping) > 3) { 1383 $the_state_shipping = $this->left($the_state_shipping, 3); 1384 } 1385 1378 1386 1379 // Build an array of sale authorization parameters. 1387 1380 // The parameter fix_iso_codes will ignore states (which are not on ISO format) … … 1492 1485 error_log('API request failed: ' . $response->get_error_message()); 1493 1486 } else { 1487 1494 1488 // Decode the JSON response. 1495 1489 $body = json_decode(wp_remote_retrieve_body($response)); 1496 1490 // Return the decoded response. 1491 if ($body == "" && $response != "") { 1492 $body = wp_remote_retrieve_body($response); 1493 } 1494 if ($body == "" && $response != "" && isset($response['body']) && $response['body']!="") { 1495 $body = $response['body']; 1496 } 1497 1497 return $body; 1498 1498 }
Note: See TracChangeset
for help on using the changeset viewer.