Plugin Directory

Changeset 2858322


Ignore:
Timestamp:
02/01/2023 12:28:30 PM (3 years ago)
Author:
PerfectSolution
Message:

Update trunk/ - 5.0.0

Location:
woocommerce-quickpay/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-quickpay/trunk/README.txt

    r2803626 r2858322  
    2828
    2929== Changelog ==
     30= 6.8.3 =
     31* Fix: Avoid requesting quickpay_fetch_private_key on all order / subscription related pages.
     32
    3033== 6.8.2 =
    3134* Fix: Add fees to basket items array
  • woocommerce-quickpay/trunk/assets/javascript/backend.js

    r2479343 r2858322  
    198198
    199199    QuickPayPrivateKey.prototype.validatePrivateKey = function() {
    200         var self = this;
    201         $.post(ajaxurl + '?action=quickpay_fetch_private_key', { api_key: self.apiKeyField.val() }, function(response) {
    202             if (response.status === 'success' && self.field.val() === response.data.private_key) {
    203                 self.refresh.removeClass('refresh').addClass('ok');
    204             }
    205 
    206             self.refresh.fadeIn();
    207         }, 'json');
     200        if(document.getElementById('woocommerce_quickpay_quickpay_privatekey')) {
     201            var self = this;
     202            $.post(ajaxurl + '?action=quickpay_fetch_private_key', { api_key: self.apiKeyField.val() }, function(response) {
     203                if (response.status === 'success' && self.field.val() === response.data.private_key) {
     204                    self.refresh.removeClass('refresh').addClass('ok');
     205                }
     206
     207                self.refresh.fadeIn();
     208            }, 'json');
     209        }
    208210    };
    209211
  • woocommerce-quickpay/trunk/woocommerce-quickpay.php

    r2803626 r2858322  
    44 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/
    55 * Description: Integrates your QuickPay payment gateway into your WooCommerce installation.
    6  * Version: 6.8.2
     6 * Version: 6.8.3
    77 * Author: Perfect Solution
    88 * Text Domain: woo-quickpay
     
    1818}
    1919
    20 define( 'WCQP_VERSION', '6.8.2' );
     20define( 'WCQP_VERSION', '6.8.3' );
    2121define( 'WCQP_URL', plugins_url( __FILE__ ) );
    2222define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.