Changeset 2858322
- Timestamp:
- 02/01/2023 12:28:30 PM (3 years ago)
- Location:
- woocommerce-quickpay/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
assets/javascript/backend.js (modified) (1 diff)
-
woocommerce-quickpay.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-quickpay/trunk/README.txt
r2803626 r2858322 28 28 29 29 == Changelog == 30 = 6.8.3 = 31 * Fix: Avoid requesting quickpay_fetch_private_key on all order / subscription related pages. 32 30 33 == 6.8.2 = 31 34 * Fix: Add fees to basket items array -
woocommerce-quickpay/trunk/assets/javascript/backend.js
r2479343 r2858322 198 198 199 199 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 } 208 210 }; 209 211 -
woocommerce-quickpay/trunk/woocommerce-quickpay.php
r2803626 r2858322 4 4 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/ 5 5 * Description: Integrates your QuickPay payment gateway into your WooCommerce installation. 6 * Version: 6.8. 26 * Version: 6.8.3 7 7 * Author: Perfect Solution 8 8 * Text Domain: woo-quickpay … … 18 18 } 19 19 20 define( 'WCQP_VERSION', '6.8. 2' );20 define( 'WCQP_VERSION', '6.8.3' ); 21 21 define( 'WCQP_URL', plugins_url( __FILE__ ) ); 22 22 define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.