Version Description
- Fix: woocommerce modal field filter
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 5.3.4 |
Comparing to | |
See all releases |
Code changes from version 5.3.3 to 5.3.4
includes/controller/class-wooccm-field.php
CHANGED
@@ -253,9 +253,13 @@ class WOOCCM_Field_Controller extends WOOCCM_Controller
|
|
253 |
|
254 |
if (!empty($field['show_product'])) {
|
255 |
$field['show_product_selected'] = array_filter(array_combine((array) $field['show_product'], array_map('get_the_title', (array) $field['show_product'])));
|
|
|
|
|
256 |
}
|
257 |
if (!empty($field['hide_product'])) {
|
258 |
$field['hide_product_selected'] = array_filter(array_combine((array) $field['hide_product'], array_map('get_the_title', (array) $field['hide_product'])));
|
|
|
|
|
259 |
}
|
260 |
|
261 |
if (!empty($field['conditional_parent_key']) && $field['conditional_parent_key'] != $field['key']) {
|
253 |
|
254 |
if (!empty($field['show_product'])) {
|
255 |
$field['show_product_selected'] = array_filter(array_combine((array) $field['show_product'], array_map('get_the_title', (array) $field['show_product'])));
|
256 |
+
} else {
|
257 |
+
$field['show_product_selected'] = array();
|
258 |
}
|
259 |
if (!empty($field['hide_product'])) {
|
260 |
$field['hide_product_selected'] = array_filter(array_combine((array) $field['hide_product'], array_map('get_the_title', (array) $field['hide_product'])));
|
261 |
+
} else {
|
262 |
+
$field['hide_product_selected'] = array();
|
263 |
}
|
264 |
|
265 |
if (!empty($field['conditional_parent_key']) && $field['conditional_parent_key'] != $field['key']) {
|
readme.txt
CHANGED
@@ -107,6 +107,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
110 |
= 5.3.3 =
|
111 |
* Fix: php error
|
112 |
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 5.3.4 =
|
111 |
+
* Fix: woocommerce modal field filter
|
112 |
+
|
113 |
= 5.3.3 =
|
114 |
* Fix: php error
|
115 |
|
woocommerce-checkout-manager.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Checkout Manager for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manages WooCommerce Checkout, the advanced way.
|
7 |
-
* Version: 5.3.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
@@ -20,7 +20,7 @@ if (!defined('WOOCCM_PLUGIN_NAME')) {
|
|
20 |
define('WOOCCM_PLUGIN_NAME', 'Checkout Manager for WooCommerce');
|
21 |
}
|
22 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
23 |
-
define('WOOCCM_PLUGIN_VERSION', '5.3.
|
24 |
}
|
25 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
26 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|
4 |
* Plugin Name: Checkout Manager for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manages WooCommerce Checkout, the advanced way.
|
7 |
+
* Version: 5.3.4
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
20 |
define('WOOCCM_PLUGIN_NAME', 'Checkout Manager for WooCommerce');
|
21 |
}
|
22 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
23 |
+
define('WOOCCM_PLUGIN_VERSION', '5.3.4');
|
24 |
}
|
25 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
26 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|