Changeset 2982494
- Timestamp:
- 10/23/2023 09:34:55 AM (2 years ago)
- Location:
- splitit-installment-payments
- Files:
-
- 1 added
- 4 edited
-
tags/4.1.3 (added)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/splitIt-flexfields-payment-gateway.php (modified) (3 diffs)
-
trunk/template/flex-field-index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
splitit-installment-payments/trunk/CHANGELOG.md
r2948745 r2982494 3 3 All notable changes to this project will be documented in this file 4 4 - 5 6 ### 4.1.3 7 * Some minor code improvements and bug fixes 5 8 6 9 ### 4.1.2 -
splitit-installment-payments/trunk/readme.txt
r2948745 r2982494 3 3 Tags: ecommerce, e-commerce, commerce, wordpress ecommerce, sales, sell, shop, shopping, checkout, payment, splitit 4 4 Requires at least: 5.6 5 Tested up to: 6. 2.25 Tested up to: 6.3.2 6 6 WC requires at least: 5.5 7 WC tested up to: 7.9.08 Stable tag: 4.1. 27 WC tested up to: 8.2.1 8 Stable tag: 4.1.3 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 61 61 62 62 == Changelog == 63 64 = 4.1.3 - 2023-10-18 = 65 Some minor code improvements and bug fixes 63 66 64 67 = 4.1.2 - 2023-08-07 = -
splitit-installment-payments/trunk/splitIt-flexfields-payment-gateway.php
r2948745 r2982494 10 10 * Author: Splitit 11 11 * Author URI: https://www.splitit.com/ 12 * Version: 4.1. 212 * Version: 4.1.3 13 13 */ 14 14 … … 24 24 25 25 global $plugin_version; 26 $plugin_version = '4.1. 2';26 $plugin_version = '4.1.3'; 27 27 28 28 global $required_splitit_php_version; … … 1737 1737 } 1738 1738 1739 return$thank_you_title;1739 echo $thank_you_title; 1740 1740 1741 1741 } -
splitit-installment-payments/trunk/template/flex-field-index.php
r2934336 r2982494 70 70 } 71 71 return value; 72 } 73 74 window.checkCheckoutInputs = function () { 75 let inputTimeout; 76 $( 'form[name="checkout"]' ).on( 'input', 'input[name^="billing_email"]', function () { 77 78 clearTimeout(inputTimeout); 79 80 inputTimeout = setTimeout(function() { 81 $( 'body' ).trigger( 'update_checkout' ); 82 }, 1000); 83 }); 72 84 } 73 85 … … 204 216 } 205 217 } ); 218 219 checkCheckoutInputs(); 206 220 207 221 //Order pay
Note: See TracChangeset
for help on using the changeset viewer.