Plugin Directory

Changeset 2945760


Ignore:
Timestamp:
08/01/2023 03:43:14 AM (3 years ago)
Author:
tripleatechnology
Message:

releasing v2.0.9

Location:
triplea-cryptocurrency-payment-gateway-for-woocommerce
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.9/assets/js/checkout.js

    r2945267 r2945760  
    275275    }
    276276    function triplea_validateCheckoutCallback(response) {
     277        if(response.data.messages.error && response.data.messages.error.length > 0){
     278
     279            let messageItems = response.data.messages.error.map(function (message) {
     280                return '<li>' + message.notice + '</li>';
     281            }).join('');
     282
     283            showError('<ul class="woocommerce-error" role="alert">' + messageItems + '</ul>', selector);
     284            $('#triplea_embedded_payment_form_btn').show();
     285            $('#triplea_embedded_payment_form_loading_txt').hide();
     286            return null;
     287
     288        }
    277289        if (response.data && response.success === false) {
    278290            let messageItems = response.data.messages.map(function (message) {
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.9/readme.txt

    r2945267 r2945760  
    77Requires at least: 5.5
    88Tested up to: 6.2.2
    9 Stable tag: 2.0.8
     9Stable tag: 2.0.9
    1010Requires PHP: 7.0
    1111License: GPLv2 or later
     
    109109== Changelog ==
    110110
     111= 2.0.9 =
     112Fixed: Updated checkout page form validation notices display logic
     113
    111114= 2.0.8 =
    112115Fixed: Check custom validation in checkout form before calling for payment form
     
    277280== Upgrade Notice ==
    278281
     282= 2.0.9 =
     283Simply install the update. No further action is needed.
     284
    279285= 2.0.8 =
    280286Simply install the update. No further action is needed.
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.9/triplea-cryptocurrency-payment-gateway-for-woocommerce.php

    r2945267 r2945760  
    1717 * Plugin URI:        https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/
    1818 * Description:       Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by TripleA.
    19  * Version:           2.0.8
     19 * Version:           2.0.9
    2020 * Author:            TripleA Team
    2121 * Author URI:        https://triple-a.io
     
    4545     * $var string
    4646     */
    47     const version = '2.0.8';
     47    const version = '2.0.9';
    4848
    4949    /*
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/assets/js/checkout.js

    r2945267 r2945760  
    275275    }
    276276    function triplea_validateCheckoutCallback(response) {
     277        if(response.data.messages.error && response.data.messages.error.length > 0){
     278
     279            let messageItems = response.data.messages.error.map(function (message) {
     280                return '<li>' + message.notice + '</li>';
     281            }).join('');
     282
     283            showError('<ul class="woocommerce-error" role="alert">' + messageItems + '</ul>', selector);
     284            $('#triplea_embedded_payment_form_btn').show();
     285            $('#triplea_embedded_payment_form_loading_txt').hide();
     286            return null;
     287
     288        }
    277289        if (response.data && response.success === false) {
    278290            let messageItems = response.data.messages.map(function (message) {
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/readme.txt

    r2945267 r2945760  
    77Requires at least: 5.5
    88Tested up to: 6.2.2
    9 Stable tag: 2.0.8
     9Stable tag: 2.0.9
    1010Requires PHP: 7.0
    1111License: GPLv2 or later
     
    109109== Changelog ==
    110110
     111= 2.0.9 =
     112Fixed: Updated checkout page form validation notices display logic
     113
    111114= 2.0.8 =
    112115Fixed: Check custom validation in checkout form before calling for payment form
     
    277280== Upgrade Notice ==
    278281
     282= 2.0.9 =
     283Simply install the update. No further action is needed.
     284
    279285= 2.0.8 =
    280286Simply install the update. No further action is needed.
  • triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/triplea-cryptocurrency-payment-gateway-for-woocommerce.php

    r2945267 r2945760  
    1717 * Plugin URI:        https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/
    1818 * Description:       Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by TripleA.
    19  * Version:           2.0.8
     19 * Version:           2.0.9
    2020 * Author:            TripleA Team
    2121 * Author URI:        https://triple-a.io
     
    4545     * $var string
    4646     */
    47     const version = '2.0.8';
     47    const version = '2.0.9';
    4848
    4949    /*
Note: See TracChangeset for help on using the changeset viewer.