Changeset 3472383
- Timestamp:
- 03/02/2026 06:55:12 AM (4 weeks ago)
- Location:
- small-package-quotes-wwe-edition
- Files:
-
- 6 edited
- 1 copied
-
tags/5.3.7 (copied) (copied from small-package-quotes-wwe-edition/trunk)
-
tags/5.3.7/front/js/en-wwe-small-checkout.js (modified) (2 diffs)
-
tags/5.3.7/readme.txt (modified) (2 diffs)
-
tags/5.3.7/woocommerceShip.php (modified) (2 diffs)
-
trunk/front/js/en-wwe-small-checkout.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerceShip.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
small-package-quotes-wwe-edition/tags/5.3.7/front/js/en-wwe-small-checkout.js
r2456060 r3472383 1 1 jQuery(function() { 2 if (typeof trigger == "undefined"){2 if (typeof trigger == "undefined") { 3 3 var trigger = false; 4 4 5 jQuery('#billing_address_1').addClass('billing_address1'); 5 6 jQuery('#billing_address_2').addClass('billing_address_2'); … … 11 12 jQuery('#shipping_postcode').addClass('shipping_postcode'); 12 13 13 jQuery('.billing_address1 , .billing_address_2 , \n\ 14 .shipping_address_1 , .shipping_address_2 , \n\ 15 .shipping_city , .billing_city , .billing_postcode , \n\ 16 .shipping_postcode').on('keydown' , function(event){ 17 if(trigger == false){ 14 var fields = '.billing_address1, .billing_address_2, .shipping_address_1, .shipping_address_2, .shipping_city, .billing_city, .billing_postcode, .shipping_postcode'; 15 16 jQuery(fields).on('keydown', function(event) { 17 if (trigger == false) { 18 18 event.stopImmediatePropagation(); 19 19 } 20 trigger = false; 20 trigger = false; 21 21 }); 22 22 23 jQuery('.billing_address1 , .billing_address_2 , \n\ 24 .shipping_address_1 , .shipping_address_2 , \n\ 25 .shipping_city , .billing_city , .billing_postcode , \n\ 26 .shipping_postcode').on('change' , function(event){ 27 trigger = true; 23 jQuery(fields).on('change', function() { 24 trigger = true; 28 25 jQuery('.billing_address1').trigger('keydown'); 29 30 26 }); 31 27 } -
small-package-quotes-wwe-edition/tags/5.3.7/readme.txt
r3430551 r3472383 4 4 Requires at least: 6.4 5 5 Tested up to: 6.9 6 Stable tag: 5.3. 66 Stable tag: 5.3.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 141 141 142 142 == Changelog == 143 144 = 5.3.7 - 2026-03-02 = 145 * Fix: Resolved JS files minification conflict with the WP Rocket plugin to ensure compatibility with asset optimization. 143 146 144 147 = 5.3.6 - 2026-01-01 = -
small-package-quotes-wwe-edition/tags/5.3.7/woocommerceShip.php
r3430551 r3472383 6 6 Author: Eniture Technology 7 7 Author URI: https://eniture.com/ 8 Version: 5.3. 68 Version: 5.3.7 9 9 Text Domain: small-package-quotes-wwe-edition 10 License: GPL-2.0-or-later 10 License: GPLv2 or later 11 Requires Plugins: woocommerce 11 12 */ 12 13 /* … … 462 463 { 463 464 wp_enqueue_script('jquery'); 464 wp_enqueue_script('en_wwe_small_frontend_checkout_script', plugin_dir_url(__FILE__) . 'front/js/en-wwe-small-checkout.js', [], '1.0. 1');465 wp_enqueue_script('en_wwe_small_frontend_checkout_script', plugin_dir_url(__FILE__) . 'front/js/en-wwe-small-checkout.js', [], '1.0.2'); 465 466 wp_localize_script('en_wwe_small_frontend_checkout_script', 'frontend_script', array( 466 467 'pluginsUrl' => plugins_url(), -
small-package-quotes-wwe-edition/trunk/front/js/en-wwe-small-checkout.js
r2456060 r3472383 1 1 jQuery(function() { 2 if (typeof trigger == "undefined"){2 if (typeof trigger == "undefined") { 3 3 var trigger = false; 4 4 5 jQuery('#billing_address_1').addClass('billing_address1'); 5 6 jQuery('#billing_address_2').addClass('billing_address_2'); … … 11 12 jQuery('#shipping_postcode').addClass('shipping_postcode'); 12 13 13 jQuery('.billing_address1 , .billing_address_2 , \n\ 14 .shipping_address_1 , .shipping_address_2 , \n\ 15 .shipping_city , .billing_city , .billing_postcode , \n\ 16 .shipping_postcode').on('keydown' , function(event){ 17 if(trigger == false){ 14 var fields = '.billing_address1, .billing_address_2, .shipping_address_1, .shipping_address_2, .shipping_city, .billing_city, .billing_postcode, .shipping_postcode'; 15 16 jQuery(fields).on('keydown', function(event) { 17 if (trigger == false) { 18 18 event.stopImmediatePropagation(); 19 19 } 20 trigger = false; 20 trigger = false; 21 21 }); 22 22 23 jQuery('.billing_address1 , .billing_address_2 , \n\ 24 .shipping_address_1 , .shipping_address_2 , \n\ 25 .shipping_city , .billing_city , .billing_postcode , \n\ 26 .shipping_postcode').on('change' , function(event){ 27 trigger = true; 23 jQuery(fields).on('change', function() { 24 trigger = true; 28 25 jQuery('.billing_address1').trigger('keydown'); 29 30 26 }); 31 27 } -
small-package-quotes-wwe-edition/trunk/readme.txt
r3430551 r3472383 4 4 Requires at least: 6.4 5 5 Tested up to: 6.9 6 Stable tag: 5.3. 66 Stable tag: 5.3.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 141 141 142 142 == Changelog == 143 144 = 5.3.7 - 2026-03-02 = 145 * Fix: Resolved JS files minification conflict with the WP Rocket plugin to ensure compatibility with asset optimization. 143 146 144 147 = 5.3.6 - 2026-01-01 = -
small-package-quotes-wwe-edition/trunk/woocommerceShip.php
r3430551 r3472383 6 6 Author: Eniture Technology 7 7 Author URI: https://eniture.com/ 8 Version: 5.3. 68 Version: 5.3.7 9 9 Text Domain: small-package-quotes-wwe-edition 10 License: GPL-2.0-or-later 10 License: GPLv2 or later 11 Requires Plugins: woocommerce 11 12 */ 12 13 /* … … 462 463 { 463 464 wp_enqueue_script('jquery'); 464 wp_enqueue_script('en_wwe_small_frontend_checkout_script', plugin_dir_url(__FILE__) . 'front/js/en-wwe-small-checkout.js', [], '1.0. 1');465 wp_enqueue_script('en_wwe_small_frontend_checkout_script', plugin_dir_url(__FILE__) . 'front/js/en-wwe-small-checkout.js', [], '1.0.2'); 465 466 wp_localize_script('en_wwe_small_frontend_checkout_script', 'frontend_script', array( 466 467 'pluginsUrl' => plugins_url(),
Note: See TracChangeset
for help on using the changeset viewer.