Skip to content

Commit

Permalink
Merge pull request #65 from logeecom/master
Browse files Browse the repository at this point in the history
Add compatibility with WC 8.1 and WP 6.3
  • Loading branch information
logeecom authored Oct 11, 2023
2 parents 9877af2 + 94d2446 commit 62b10d1
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 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.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

## [v3.3.0](https://github.com/logeecom/pl_woocommerce_module/compare/v3.2.18...v3.3.0) - 2023-07-24
### Changed
- Add compatibility with WooCommerce HPOS (High-Performance Order Storage) feature
Expand Down
3 changes: 3 additions & 0 deletions src/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
*** Packlink PRO Changelog ***

2023-10-11 - version 3.3.1
* Update - Added compatibility with WooCommerce 8.1 and WordPress 6.3

2022-10-10 - version 3.2.12
* Update - stabilize version.

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.0",
"version": "3.3.1",
"type": "library",
"repositories": [
{
Expand Down
4 changes: 2 additions & 2 deletions src/packlink-pro-shipping.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
* 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.0
* Version: 3.3.1
* Author: Packlink Shipping S.L.
* Author URI: https://pro.packlink.es/
* License: GPL
* Text Domain: packlink-pro-shipping
* Domain Path: /languages
* WC requires at least: 3.0.0
* WC tested up to: 7.5.1
* WC tested up to: 8.1.1
*/

use Packlink\WooCommerce\Plugin;
Expand Down
9 changes: 7 additions & 2 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: packlink
Tags: woocommerce, shipment, shipping, packlink
Requires at least: 4.7
Requires PHP: 5.5
Tested up to: 6.2
Stable tag: 3.3.0
Tested up to: 6.3.1
Stable tag: 3.3.1
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.1 - October 11th, 2023

**Updates**
- Add compatibility with WooCommerce 8.1.1 and WordPress 6.3.1

#### 3.3.0 - July 24th, 2023

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

function setHiddenFields(location) {
let dropOffId = document.querySelector( 'input[name="packlink_drop_off_id"]' );
let dropOffExtra = document.querySelector( 'input[name="packlink_drop_off_extra"]' );
let dropOffId = document.getElementsByName( 'packlink_drop_off_id' )[1];
let dropOffExtra = document.getElementsByName( 'packlink_drop_off_extra' )[1];

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

0 comments on commit 62b10d1

Please sign in to comment.