Skip to content

Commit

Permalink
Merge pull request #56 from logeecom/dev
Browse files Browse the repository at this point in the history
Release version 3.2.10
  • Loading branch information
logeecom authored Jul 20, 2022
2 parents 05b7553 + 003fe83 commit bf87b2e
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 10 deletions.
Binary file not shown.
6 changes: 5 additions & 1 deletion 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.2.10](https://github.com/logeecom/pl_woocommerce_module/compare/v3.2.8...v3.2.9) - 2022-07-19
### Changed
- Added compatibility with the new checkout page.

## [v3.2.9](https://github.com/logeecom/pl_woocommerce_module/compare/v3.2.8...v3.2.9) - 2022-05-30
### Changed
- Updated async process wakeup delay for manual sync.
Expand Down Expand Up @@ -197,4 +201,4 @@ and shipment status is in one of:
* DELIVERED

## [v2.0.0](https://github.com/logeecom/pl_woocommerce_module/tree/v2.0.0) - 2019-03-11
- First stable release of the new module
- First stable release of the new module
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.2.9",
"version": "3.2.10",
"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.2.9
* Version: 3.2.10
* 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: 6.5.0
* WC tested up to: 6.6.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: 5.9.3
Stable tag: 3.2.9
Tested up to: 6.0.0
Stable tag: 3.2.10
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.2.10 - July 19, 2022

**Updates**
- Added compatibility with the new checkout page.

#### 3.2.9 - May 30, 2022

**Updates**
Expand Down
5 changes: 4 additions & 1 deletion src/resources/js/packlink-checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ var Packlink = window.Packlink || {};
Packlink.checkout.setDropOffAddress = setDropOffAddress;
Packlink.checkout.setSelectedLocationId = setSelectedLocationId;


function initialize() {
modal = document.getElementById( 'pl-picker-modal' );
closeButton = document.getElementById( 'pl-picker-modal-close' );
updateButton = document.querySelector( "[name='calc_shipping']" );

let templates = document.getElementById("packlink-js-templates");
[].forEach.call(
document.getElementsByName( 'packlink_show_image' ),
function (item) {
Expand All @@ -48,6 +49,8 @@ var Packlink = window.Packlink || {};
function () {
initLocationPicker();
modal.style.display = 'block';
document.body.appendChild(templates);

}
);
}
Expand Down
7 changes: 4 additions & 3 deletions src/resources/views/shipping-method-drop-off.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@

<?php if ( ! is_cart() ) : ?>
<button type="button" id="packlink-drop-off-picker" class="button"><?php echo $button_label; ?></button>

<div id="pl-picker-modal" style="display: none;">
<div id="packlink-js-templates">
<div id="pl-picker-modal" style="display: none;">
<location-picker>
<div class="lp-content" data-lp-id="content">
<div class="lp-locations">
Expand All @@ -84,7 +84,7 @@
</svg>
</div>

<location-picker-template>
<location-picker-template>
<div class="lp-template" id="template-container">
<div data-lp-id="working-hours-template" class="lp-hour-wrapper">
<div class="day" data-lp-id="day">
Expand Down Expand Up @@ -125,4 +125,5 @@
</div>
</div>
</location-picker-template>
</div>
<?php endif; ?>

0 comments on commit bf87b2e

Please sign in to comment.