Version Description
- Fix: php error
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 5.1.1 |
Comparing to | |
See all releases |
Code changes from version 5.1.0 to 5.1.1
includes/class-wooccm-compatibility.php
CHANGED
@@ -357,8 +357,8 @@ class WOOCCM_Field_Compatibility
|
|
357 |
$field['date_limit_fixed_max'] = '';
|
358 |
}
|
359 |
|
360 |
-
|
361 |
-
return WOOCCM()->$prefix->sanitize_field_data(array_intersect_key($field, array_flip(array_keys(WOOCCM()->$prefix->get_args()))));
|
362 |
}
|
363 |
|
364 |
protected function get_fields_new($name, $prefix = '')
|
357 |
$field['date_limit_fixed_max'] = '';
|
358 |
}
|
359 |
|
360 |
+
return $field;
|
361 |
+
//return WOOCCM()->$prefix->sanitize_field_data(array_intersect_key($field, array_flip(array_keys(WOOCCM()->$prefix->get_args()))));
|
362 |
}
|
363 |
|
364 |
protected function get_fields_new($name, $prefix = '')
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://quadlayers.com/
|
|
4 |
Tags: woocommerce, woocommerce checkout, field manager, checkout editor, checkout field, shipping field, billing field, order field, additional field
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.4.2
|
7 |
-
Stable tag: 5.1.
|
8 |
WC requires at least: 3.1.0
|
9 |
WC tested up to: 4.2.0
|
10 |
License: GPLv2 or later
|
@@ -107,6 +107,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
110 |
= 5.1.0 =
|
111 |
* Fix: billing & shipping duplicated in order
|
112 |
* Fix: php compatbility
|
4 |
Tags: woocommerce, woocommerce checkout, field manager, checkout editor, checkout field, shipping field, billing field, order field, additional field
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.4.2
|
7 |
+
Stable tag: 5.1.1
|
8 |
WC requires at least: 3.1.0
|
9 |
WC tested up to: 4.2.0
|
10 |
License: GPLv2 or later
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 5.1.1 =
|
111 |
+
* Fix: php error
|
112 |
+
|
113 |
= 5.1.0 =
|
114 |
* Fix: billing & shipping duplicated in order
|
115 |
* Fix: php compatbility
|
woocommerce-checkout-manager.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Plugin Name: WooCommerce Checkout Manager
|
5 |
* Description: Manages WooCommerce Checkout, the advanced way.
|
6 |
-
* Version: 5.1.
|
7 |
* Author: QuadLayers
|
8 |
* Author URI: https://www.quadlayers.com
|
9 |
* Copyright: 2019 QuadLayers (https://www.quadlayers.com)
|
@@ -19,7 +19,7 @@ if (!defined('WOOCCM_PLUGIN_NAME')) {
|
|
19 |
define('WOOCCM_PLUGIN_NAME', 'WooCommerce Checkout Manager');
|
20 |
}
|
21 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
22 |
-
define('WOOCCM_PLUGIN_VERSION', '5.1.
|
23 |
}
|
24 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
25 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|
3 |
/**
|
4 |
* Plugin Name: WooCommerce Checkout Manager
|
5 |
* Description: Manages WooCommerce Checkout, the advanced way.
|
6 |
+
* Version: 5.1.1
|
7 |
* Author: QuadLayers
|
8 |
* Author URI: https://www.quadlayers.com
|
9 |
* Copyright: 2019 QuadLayers (https://www.quadlayers.com)
|
19 |
define('WOOCCM_PLUGIN_NAME', 'WooCommerce Checkout Manager');
|
20 |
}
|
21 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
22 |
+
define('WOOCCM_PLUGIN_VERSION', '5.1.1');
|
23 |
}
|
24 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
25 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|