Plugin Directory

Changeset 3472379


Ignore:
Timestamp:
03/02/2026 06:46:15 AM (4 weeks ago)
Author:
enituretechnology
Message:

5.2.1 - 2026-03-02

  • Fix: Resolved JS files minification conflict with the WP Rocket plugin to ensure compatibility with asset optimization.

Ticket 42226030205

Location:
ltl-freight-quotes-worldwide-express-edition
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ltl-freight-quotes-worldwide-express-edition/tags/5.2.1/front/js/en-wwe-checkout.js

    r2456067 r3472379  
    11jQuery(function() {
    2     if(typeof trigger == "undefined"){
     2    if (typeof trigger == "undefined") {
    33        var trigger = false;
     4
    45        jQuery('#billing_address_1').addClass('billing_address1');
    56        jQuery('#billing_address_2').addClass('billing_address_2');
     
    1112        jQuery('#shipping_postcode').addClass('shipping_postcode');
    1213
    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) {
    1818                event.stopImmediatePropagation();
    1919            }
    20             trigger = false; 
     20            trigger = false;
    2121        });
    2222
    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;
    2825            jQuery('.billing_address1').trigger('keydown');
    29 
    3026        });
    3127    }
  • ltl-freight-quotes-worldwide-express-edition/tags/5.2.1/readme.txt

    r3463971 r3472379  
    44Requires at least: 6.4
    55Tested up to: 6.9
    6 Stable tag: 5.2.0
     6Stable tag: 5.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    169169== Changelog ==
    170170
     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
    171177= 5.1.9 - 2025-01-09 =
    172178* 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  
    66  Author: Eniture Technology
    77  Author URI: https://eniture.com/
    8   Version: 5.2.0
     8  Version: 5.2.1
    99  Text Domain: eniture-technology
    1010  License: GPLv2 or later
     
    395395        plugin_dir_url(__FILE__) . 'front/js/en-wwe-checkout.js',
    396396        array('jquery'),
    397         '1.1.0',
     397        '1.1.1',
    398398        true
    399399    );
  • ltl-freight-quotes-worldwide-express-edition/trunk/front/js/en-wwe-checkout.js

    r2456067 r3472379  
    11jQuery(function() {
    2     if(typeof trigger == "undefined"){
     2    if (typeof trigger == "undefined") {
    33        var trigger = false;
     4
    45        jQuery('#billing_address_1').addClass('billing_address1');
    56        jQuery('#billing_address_2').addClass('billing_address_2');
     
    1112        jQuery('#shipping_postcode').addClass('shipping_postcode');
    1213
    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) {
    1818                event.stopImmediatePropagation();
    1919            }
    20             trigger = false; 
     20            trigger = false;
    2121        });
    2222
    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;
    2825            jQuery('.billing_address1').trigger('keydown');
    29 
    3026        });
    3127    }
  • ltl-freight-quotes-worldwide-express-edition/trunk/readme.txt

    r3463971 r3472379  
    44Requires at least: 6.4
    55Tested up to: 6.9
    6 Stable tag: 5.2.0
     6Stable tag: 5.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    169169== Changelog ==
    170170
     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
    171177= 5.1.9 - 2025-01-09 =
    172178* 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  
    66  Author: Eniture Technology
    77  Author URI: https://eniture.com/
    8   Version: 5.2.0
     8  Version: 5.2.1
    99  Text Domain: eniture-technology
    1010  License: GPLv2 or later
     
    395395        plugin_dir_url(__FILE__) . 'front/js/en-wwe-checkout.js',
    396396        array('jquery'),
    397         '1.1.0',
     397        '1.1.1',
    398398        true
    399399    );
Note: See TracChangeset for help on using the changeset viewer.