Plugin Directory

Changeset 2982494


Ignore:
Timestamp:
10/23/2023 09:34:55 AM (2 years ago)
Author:
SplitIt
Message:

release version 4.1.3

Location:
splitit-installment-payments
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • splitit-installment-payments/trunk/CHANGELOG.md

    r2948745 r2982494  
    33All notable changes to this project will be documented in this file
    44-
     5
     6### 4.1.3
     7* Some minor code improvements and bug fixes
    58
    69### 4.1.2
  • splitit-installment-payments/trunk/readme.txt

    r2948745 r2982494  
    33Tags: ecommerce, e-commerce, commerce, wordpress ecommerce, sales, sell, shop, shopping, checkout, payment, splitit
    44Requires at least: 5.6
    5 Tested up to: 6.2.2
     5Tested up to: 6.3.2
    66WC requires at least: 5.5
    7 WC tested up to: 7.9.0
    8 Stable tag: 4.1.2
     7WC tested up to: 8.2.1
     8Stable tag: 4.1.3
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    6161
    6262== Changelog ==
     63
     64= 4.1.3 - 2023-10-18 =
     65Some minor code improvements and bug fixes
    6366
    6467= 4.1.2 - 2023-08-07 =
  • splitit-installment-payments/trunk/splitIt-flexfields-payment-gateway.php

    r2948745 r2982494  
    1010 * Author: Splitit
    1111 * Author URI: https://www.splitit.com/
    12  * Version: 4.1.2
     12 * Version: 4.1.3
    1313 */
    1414
     
    2424
    2525global $plugin_version;
    26 $plugin_version = '4.1.2';
     26$plugin_version = '4.1.3';
    2727
    2828global $required_splitit_php_version;
     
    17371737            }
    17381738
    1739             return $thank_you_title;
     1739            echo $thank_you_title;
    17401740
    17411741        }
  • splitit-installment-payments/trunk/template/flex-field-index.php

    r2934336 r2982494  
    7070            }
    7171            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            });
    7284        }
    7385
     
    204216            }
    205217        } );
     218
     219        checkCheckoutInputs();
    206220
    207221        //Order pay
Note: See TracChangeset for help on using the changeset viewer.