Plugin Directory

Changeset 3006713


Ignore:
Timestamp:
12/07/2023 10:59:04 AM (2 years ago)
Author:
parcelpro
Message:

Update to version 1.6.17 from GitHub

Location:
woo-parcel-pro
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woo-parcel-pro/tags/1.6.17/changelog.md

    r3000682 r3006713  
    11# Changelog
     2
     3## 1.6.17 - 2023-12-07
     4* Improve parcelshop popup hooks resilience with other checkouts
    25
    36## 1.6.16 - 2023-11-22
  • woo-parcel-pro/tags/1.6.17/composer.json

    r3000682 r3006713  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.6.16",
     5  "version": "1.6.17",
    66  "require": {
    77    "php": ">=7.1"
  • woo-parcel-pro/tags/1.6.17/includes/class-parcelpro.php

    r2995760 r3006713  
    176176
    177177        $this->loader->add_action('woocommerce_before_checkout_form', $plugin_public, 'add_popup');
    178         $this->loader->add_action('woocommerce_after_checkout_shipping_form', $plugin_public, 'add_input');
     178        $this->loader->add_action('woocommerce_after_checkout_form', $plugin_public, 'add_input');
    179179        $this->loader->add_action('woocommerce_before_cart_contents', $plugin_public, 'add_popup');
    180180        $this->loader->add_action('woocommerce_after_cart_contents', $plugin_public, 'add_input');
     
    187187    }
    188188
    189 
    190 
    191 
    192189    /**
    193190     * Initializes shipping method.
  • woo-parcel-pro/tags/1.6.17/woocommerce-parcelpro.php

    r3000682 r3006713  
    1717 * Plugin URI:      https://www.parcelpro.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Parcel Pro.
    19  * Version:         1.6.16
     19 * Version:         1.6.17
    2020 * Author:          Parcel Pro
    2121 * Author URI:      https://parcelpro.nl/
     
    3131
    3232define('PARCELPRO_NAME', 'WooCommerce Parcel Pro');
    33 define('PARCELPRO_VERSION', '1.6.16');
     33define('PARCELPRO_VERSION', '1.6.17');
    3434define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3535define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
  • woo-parcel-pro/trunk/changelog.md

    r3000682 r3006713  
    11# Changelog
     2
     3## 1.6.17 - 2023-12-07
     4* Improve parcelshop popup hooks resilience with other checkouts
    25
    36## 1.6.16 - 2023-11-22
  • woo-parcel-pro/trunk/composer.json

    r3000682 r3006713  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.6.16",
     5  "version": "1.6.17",
    66  "require": {
    77    "php": ">=7.1"
  • woo-parcel-pro/trunk/includes/class-parcelpro.php

    r2995760 r3006713  
    176176
    177177        $this->loader->add_action('woocommerce_before_checkout_form', $plugin_public, 'add_popup');
    178         $this->loader->add_action('woocommerce_after_checkout_shipping_form', $plugin_public, 'add_input');
     178        $this->loader->add_action('woocommerce_after_checkout_form', $plugin_public, 'add_input');
    179179        $this->loader->add_action('woocommerce_before_cart_contents', $plugin_public, 'add_popup');
    180180        $this->loader->add_action('woocommerce_after_cart_contents', $plugin_public, 'add_input');
     
    187187    }
    188188
    189 
    190 
    191 
    192189    /**
    193190     * Initializes shipping method.
  • woo-parcel-pro/trunk/woocommerce-parcelpro.php

    r3000682 r3006713  
    1717 * Plugin URI:      https://www.parcelpro.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Parcel Pro.
    19  * Version:         1.6.16
     19 * Version:         1.6.17
    2020 * Author:          Parcel Pro
    2121 * Author URI:      https://parcelpro.nl/
     
    3131
    3232define('PARCELPRO_NAME', 'WooCommerce Parcel Pro');
    33 define('PARCELPRO_VERSION', '1.6.16');
     33define('PARCELPRO_VERSION', '1.6.17');
    3434define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3535define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
Note: See TracChangeset for help on using the changeset viewer.