Skip to content

Commit

Permalink
Merge pull request #66 from logeecom/master
Browse files Browse the repository at this point in the history
Release version 3.3.2
  • Loading branch information
logeecom authored Oct 17, 2023
2 parents 62b10d1 + 0a37369 commit cc27bd0
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 deletions.
Binary file not shown.
4 changes: 4 additions & 0 deletions PluginInstallation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [v3.3.2](https://github.com/logeecom/pl_woocommerce_module/compare/v3.3.1...v3.3.2) - 2023-10-17
### Changed
- Fix the issue with drop off selection

## [v3.3.1](https://github.com/logeecom/pl_woocommerce_module/compare/v3.3.0...v3.3.1) - 2023-10-11
### Changed
- Add compatibility with WooCommerce 8.1 and WordPress 6.3
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "packlink/woocommerce-dev",
"description": "Packlink WooCommerce Integration",
"version": "3.2.9",
"version": "3.3.2",
"type": "library",
"require": {
"php": ">=5.5",
Expand Down
2 changes: 1 addition & 1 deletion src/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "packlink/woocommerce",
"description": "Packlink WooCommerce Integration",
"version": "3.3.1",
"version": "3.3.2",
"type": "library",
"repositories": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/packlink-pro-shipping.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: Packlink PRO Shipping
* Plugin URI: https://en.wordpress.org/plugins/packlink-pro-shipping/
* Description: Save up to 70% on your shipping costs. No fixed fees, no minimum shipping volume required. Manage all your shipments in a single platform.
* Version: 3.3.1
* Version: 3.3.2
* Author: Packlink Shipping S.L.
* Author URI: https://pro.packlink.es/
* License: GPL
Expand Down
7 changes: 6 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: woocommerce, shipment, shipping, packlink
Requires at least: 4.7
Requires PHP: 5.5
Tested up to: 6.3.1
Stable tag: 3.3.1
Stable tag: 3.3.2
License: LICENSE-2.0
License URI: http://www.apache.org/licenses/LICENSE-2.0

Expand Down Expand Up @@ -68,6 +68,11 @@ Click <a href="https://support-pro.packlink.com/hc/es-es/articles/210158585" tar

== Changelog ==

#### 3.3.2 - October 17th, 2023

**Updates**
- Fix the issue with drop off selection

#### 3.3.1 - October 11th, 2023

**Updates**
Expand Down
6 changes: 4 additions & 2 deletions src/resources/js/packlink-checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,10 @@ var Packlink = window.Packlink || {};
}

function setHiddenFields(location) {
let dropOffId = document.getElementsByName( 'packlink_drop_off_id' )[1];
let dropOffExtra = document.getElementsByName( 'packlink_drop_off_extra' )[1];
let dropOffId = document.querySelector('.shop_table.woocommerce-checkout-review-order-table' +
' input[name="packlink_drop_off_id"]');
let dropOffExtra = document.querySelector('.shop_table.woocommerce-checkout-review-order-table' +
' input[name="packlink_drop_off_extra"]');

if (dropOffId && dropOffExtra) {
dropOffId.value = location.id;
Expand Down

0 comments on commit cc27bd0

Please sign in to comment.