Plugin Directory

Changeset 3012853


Ignore:
Timestamp:
12/21/2023 10:33:30 AM (2 years ago)
Author:
shindhl
Message:

Release 2.0.18

  • Fixed DHL Plugin Settings page on WooCommerce v8.4.0
Location:
dhlpwc
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • dhlpwc/tags/2.0.18/README.md

    r2995038 r3012853  
    11# DHL eCommerce for WooCommerce
    22 
     3v2.0.18
     4## Changes
     5- Fixed DHL Plugin Settings page on WooCommerce v8.4.0
     6
    37v2.0.17
    48## Changes
    59- Added support for Woocommerce High-Performance Order Storage (HPOS)
    6  
     10
    711v2.0.16
    812## Changes
    9 "- Added the possibility to add multiple shipments through the label panel
    10 - Update Expresser service time to reflect the correct new time"
     13- Added the possibility to add multiple shipments through the label panel
     14- Update Expresser service time to reflect the correct new time
    1115 
    1216v2.0.15
  • dhlpwc/tags/2.0.18/assets/js/dhlpwc.settings.js

    r2966997 r3012853  
    169169
    170170    }).on('dhlpwc:init_settings_menu', function(e) {
     171        // Woocommerce 8.4.0 added the wc-shipping-zone-method-fields div, breaking styling.
     172        // Removing this div to keep our css compatible with both versions.
     173        if ($('#dhlpwc_shipping_method_settings .wc-shipping-zone-method-fields').length) {
     174            $('#dhlpwc_shipping_method_settings .wc-shipping-zone-method-fields').contents().unwrap();
     175        }
    171176        $('#dhlpwc_shipping_method_settings').find('h3').each(function(e) {
    172177            var dhlpwc_settings = {
  • dhlpwc/tags/2.0.18/dhlpwoocommerce.php

    r2995038 r3012853  
    55 * Description:          This is the official DHL eCommerce for WooCommerce plugin.
    66 * Author:               DHL Parcel
    7  * Version:              2.0.17
     7 * Version:              2.0.18
    88 * Requires at least:    4.7.16
    99 * Tested up to:         6.3
  • dhlpwc/tags/2.0.18/readme.txt

    r2995038 r3012853  
    55Requires PHP:         5.6
    66Tested up to:         6.2
    7 Stable tag:           2.0.17
     7Stable tag:           2.0.18
    88WC requires at least: 3.0.0
    99WC tested up to:      7.3.0
     
    5454== Changelog ==
    5555 
     56= 2.0.18 =
     57- Fixed DHL Plugin Settings page on WooCommerce v8.4.0
     58
    5659= 2.0.17 =
    5760- Added support for Woocommerce High-Performance Order Storage (HPOS)
    58  
     61
    5962= 2.0.16 =
    60 "- Added the possibility to add multiple shipments through the label panel
    61 - Update Expresser service time to reflect the correct new time"
     63- Added the possibility to add multiple shipments through the label panel
     64- Update Expresser service time to reflect the correct new time
    6265
    6366= 2.0.15 =
  • dhlpwc/trunk/README.md

    r2995038 r3012853  
    11# DHL eCommerce for WooCommerce
    22 
     3v2.0.18
     4## Changes
     5- Fixed DHL Plugin Settings page on WooCommerce v8.4.0
     6
    37v2.0.17
    48## Changes
    59- Added support for Woocommerce High-Performance Order Storage (HPOS)
    6  
     10
    711v2.0.16
    812## Changes
    9 "- Added the possibility to add multiple shipments through the label panel
    10 - Update Expresser service time to reflect the correct new time"
     13- Added the possibility to add multiple shipments through the label panel
     14- Update Expresser service time to reflect the correct new time
    1115 
    1216v2.0.15
  • dhlpwc/trunk/assets/js/dhlpwc.settings.js

    r2966997 r3012853  
    169169
    170170    }).on('dhlpwc:init_settings_menu', function(e) {
     171        // Woocommerce 8.4.0 added the wc-shipping-zone-method-fields div, breaking styling.
     172        // Removing this div to keep our css compatible with both versions.
     173        if ($('#dhlpwc_shipping_method_settings .wc-shipping-zone-method-fields').length) {
     174            $('#dhlpwc_shipping_method_settings .wc-shipping-zone-method-fields').contents().unwrap();
     175        }
    171176        $('#dhlpwc_shipping_method_settings').find('h3').each(function(e) {
    172177            var dhlpwc_settings = {
  • dhlpwc/trunk/dhlpwoocommerce.php

    r2995038 r3012853  
    55 * Description:          This is the official DHL eCommerce for WooCommerce plugin.
    66 * Author:               DHL Parcel
    7  * Version:              2.0.17
     7 * Version:              2.0.18
    88 * Requires at least:    4.7.16
    99 * Tested up to:         6.3
  • dhlpwc/trunk/readme.txt

    r2995038 r3012853  
    55Requires PHP:         5.6
    66Tested up to:         6.2
    7 Stable tag:           2.0.17
     7Stable tag:           2.0.18
    88WC requires at least: 3.0.0
    99WC tested up to:      7.3.0
     
    5454== Changelog ==
    5555 
     56= 2.0.18 =
     57- Fixed DHL Plugin Settings page on WooCommerce v8.4.0
     58
    5659= 2.0.17 =
    5760- Added support for Woocommerce High-Performance Order Storage (HPOS)
    58  
     61
    5962= 2.0.16 =
    60 "- Added the possibility to add multiple shipments through the label panel
    61 - Update Expresser service time to reflect the correct new time"
     63- Added the possibility to add multiple shipments through the label panel
     64- Update Expresser service time to reflect the correct new time
    6265
    6366= 2.0.15 =
Note: See TracChangeset for help on using the changeset viewer.