Changeset 3472379
- Timestamp:
- 03/02/2026 06:46:15 AM (4 weeks ago)
- Location:
- ltl-freight-quotes-worldwide-express-edition
- Files:
-
- 6 edited
- 1 copied
-
tags/5.2.1 (copied) (copied from ltl-freight-quotes-worldwide-express-edition/trunk)
-
tags/5.2.1/front/js/en-wwe-checkout.js (modified) (2 diffs)
-
tags/5.2.1/readme.txt (modified) (2 diffs)
-
tags/5.2.1/woocommercefrieght.php (modified) (2 diffs)
-
trunk/front/js/en-wwe-checkout.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommercefrieght.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ltl-freight-quotes-worldwide-express-edition/tags/5.2.1/front/js/en-wwe-checkout.js
r2456067 r3472379 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 } -
ltl-freight-quotes-worldwide-express-edition/tags/5.2.1/readme.txt
r3463971 r3472379 4 4 Requires at least: 6.4 5 5 Tested up to: 6.9 6 Stable tag: 5.2. 06 Stable tag: 5.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 169 169 == Changelog == 170 170 171 = 5.2.1 - 2026-03-02 = 172 * Fix: Resolved JS files minification conflict with the WP Rocket plugin to ensure compatibility with asset optimization. 173 174 = 5.2.0 - 2026-02-18 = 175 * Fix: Resolved Broken Access Control vulnerability to improve overall plugin security. 176 171 177 = 5.1.9 - 2025-01-09 = 172 178 * Fix: Performance optimization - Frontend checkout script now loads only on cart/checkout pages with defer strategy to eliminate render-blocking JavaScript on other pages. -
ltl-freight-quotes-worldwide-express-edition/tags/5.2.1/woocommercefrieght.php
r3463971 r3472379 6 6 Author: Eniture Technology 7 7 Author URI: https://eniture.com/ 8 Version: 5.2. 08 Version: 5.2.1 9 9 Text Domain: eniture-technology 10 10 License: GPLv2 or later … … 395 395 plugin_dir_url(__FILE__) . 'front/js/en-wwe-checkout.js', 396 396 array('jquery'), 397 '1.1. 0',397 '1.1.1', 398 398 true 399 399 ); -
ltl-freight-quotes-worldwide-express-edition/trunk/front/js/en-wwe-checkout.js
r2456067 r3472379 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 } -
ltl-freight-quotes-worldwide-express-edition/trunk/readme.txt
r3463971 r3472379 4 4 Requires at least: 6.4 5 5 Tested up to: 6.9 6 Stable tag: 5.2. 06 Stable tag: 5.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 169 169 == Changelog == 170 170 171 = 5.2.1 - 2026-03-02 = 172 * Fix: Resolved JS files minification conflict with the WP Rocket plugin to ensure compatibility with asset optimization. 173 174 = 5.2.0 - 2026-02-18 = 175 * Fix: Resolved Broken Access Control vulnerability to improve overall plugin security. 176 171 177 = 5.1.9 - 2025-01-09 = 172 178 * Fix: Performance optimization - Frontend checkout script now loads only on cart/checkout pages with defer strategy to eliminate render-blocking JavaScript on other pages. -
ltl-freight-quotes-worldwide-express-edition/trunk/woocommercefrieght.php
r3463971 r3472379 6 6 Author: Eniture Technology 7 7 Author URI: https://eniture.com/ 8 Version: 5.2. 08 Version: 5.2.1 9 9 Text Domain: eniture-technology 10 10 License: GPLv2 or later … … 395 395 plugin_dir_url(__FILE__) . 'front/js/en-wwe-checkout.js', 396 396 array('jquery'), 397 '1.1. 0',397 '1.1.1', 398 398 true 399 399 );
Note: See TracChangeset
for help on using the changeset viewer.