Flexible Shipping for WooCommerce - Version 3.16.4

Version Description

  • 2020-11-30 =
  • Fixed Active Payments integration
Download this release

Release Info

Developer wpdesk
Plugin Icon 128x128 Flexible Shipping for WooCommerce
Version 3.16.4
Comparing to
See all releases

Code changes from version 3.16.3 to 3.16.4

classes/table-rate/shipping-method.php CHANGED
@@ -37,8 +37,10 @@ class WPDesk_Flexible_Shipping extends WC_Shipping_Method {
37
 
38
  /**
39
  * @var string Option Name
 
 
40
  */
41
- private $shipping_methods_option;
42
 
43
  /**
44
  * Constructor for your shipment class
37
 
38
  /**
39
  * @var string Option Name
40
+ *
41
+ * See Active Payments - must be public.
42
  */
43
+ public $shipping_methods_option;
44
 
45
  /**
46
  * Constructor for your shipment class
flexible-shipping.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Flexible Shipping
4
  * Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  * Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
- * Version: 3.16.3
7
  * Author: WP Desk
8
  * Author URI: https://flexibleshipping.com/?utm_source=plugin-list&utm_medium=link&utm_campaign=flexible-shipping-plugin-list
9
  * Text Domain: flexible-shipping
@@ -38,7 +38,7 @@ if ( ! defined( 'ABSPATH' ) ) {
38
  } // Exit if accessed directly
39
 
40
  /* THIS VARIABLE CAN BE CHANGED AUTOMATICALLY */
41
- $plugin_version = '3.16.3';
42
 
43
  $plugin_name = 'Flexible Shipping';
44
  $product_id = 'Flexible Shipping';
3
  * Plugin Name: Flexible Shipping
4
  * Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  * Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
+ * Version: 3.16.4
7
  * Author: WP Desk
8
  * Author URI: https://flexibleshipping.com/?utm_source=plugin-list&utm_medium=link&utm_campaign=flexible-shipping-plugin-list
9
  * Text Domain: flexible-shipping
38
  } // Exit if accessed directly
39
 
40
  /* THIS VARIABLE CAN BE CHANGED AUTOMATICALLY */
41
+ $plugin_version = '3.16.4';
42
 
43
  $plugin_name = 'Flexible Shipping';
44
  $product_id = 'Flexible Shipping';
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://flexibleshipping.com/table-rate/
4
  Tags: table rate, table rate shipping, conditional shipping, shipping method, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes, shipping, free shipping, advanced shipping
5
  Requires at least: 4.5
6
  Tested up to: 5.5
7
- Stable tag: 3.16.3
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -163,6 +163,9 @@ If you are upgrading from the old Flexible Shipping version (1.3.2, woo-flexible
163
 
164
  == Changelog ==
165
 
 
 
 
166
  = 3.16.3 - 2020-11-30 =
167
  * Fixed contextual info for DPD UK
168
  * Changed Author URI
4
  Tags: table rate, table rate shipping, conditional shipping, shipping method, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes, shipping, free shipping, advanced shipping
5
  Requires at least: 4.5
6
  Tested up to: 5.5
7
+ Stable tag: 3.16.4
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
163
 
164
  == Changelog ==
165
 
166
+ = 3.16.4 - 2020-11-30 =
167
+ * Fixed Active Payments integration
168
+
169
  = 3.16.3 - 2020-11-30 =
170
  * Fixed contextual info for DPD UK
171
  * Changed Author URI
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit8ab3260430d990d9d8127097322a6840::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInite96bd4b26a44a2202faff9bdb9b3de8b::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit8ab3260430d990d9d8127097322a6840
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit8ab3260430d990d9d8127097322a6840
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit8ab3260430d990d9d8127097322a6840', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit8ab3260430d990d9d8127097322a6840', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInit8ab3260430d990d9d8127097322a6840::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInite96bd4b26a44a2202faff9bdb9b3de8b
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInite96bd4b26a44a2202faff9bdb9b3de8b', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInite96bd4b26a44a2202faff9bdb9b3de8b', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInite96bd4b26a44a2202faff9bdb9b3de8b::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit8ab3260430d990d9d8127097322a6840
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'P' =>
@@ -430,10 +430,10 @@ class ComposerStaticInit8ab3260430d990d9d8127097322a6840
430
  public static function getInitializer(ClassLoader $loader)
431
  {
432
  return \Closure::bind(function () use ($loader) {
433
- $loader->prefixLengthsPsr4 = ComposerStaticInit8ab3260430d990d9d8127097322a6840::$prefixLengthsPsr4;
434
- $loader->prefixDirsPsr4 = ComposerStaticInit8ab3260430d990d9d8127097322a6840::$prefixDirsPsr4;
435
- $loader->fallbackDirsPsr4 = ComposerStaticInit8ab3260430d990d9d8127097322a6840::$fallbackDirsPsr4;
436
- $loader->classMap = ComposerStaticInit8ab3260430d990d9d8127097322a6840::$classMap;
437
 
438
  }, null, ClassLoader::class);
439
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInite96bd4b26a44a2202faff9bdb9b3de8b
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'P' =>
430
  public static function getInitializer(ClassLoader $loader)
431
  {
432
  return \Closure::bind(function () use ($loader) {
433
+ $loader->prefixLengthsPsr4 = ComposerStaticInite96bd4b26a44a2202faff9bdb9b3de8b::$prefixLengthsPsr4;
434
+ $loader->prefixDirsPsr4 = ComposerStaticInite96bd4b26a44a2202faff9bdb9b3de8b::$prefixDirsPsr4;
435
+ $loader->fallbackDirsPsr4 = ComposerStaticInite96bd4b26a44a2202faff9bdb9b3de8b::$fallbackDirsPsr4;
436
+ $loader->classMap = ComposerStaticInite96bd4b26a44a2202faff9bdb9b3de8b::$classMap;
437
 
438
  }, null, ClassLoader::class);
439
  }