Version Description
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 6.0.7.5 |
Comparing to | |
See all releases |
Code changes from version 6.0.7.4 to 6.0.7.5
includes/view/frontend/class-wooccm-fields-register.php
CHANGED
@@ -46,7 +46,7 @@ class WOOCCM_Fields_Register {
|
|
46 |
// }
|
47 |
|
48 |
public function add_billing_fields_beta( $fields ) {
|
49 |
-
if ( ! isset( $fields['
|
50 |
return $fields;
|
51 |
}
|
52 |
$wooccm_fields = WOOCCM()->billing->get_fields();
|
46 |
// }
|
47 |
|
48 |
public function add_billing_fields_beta( $fields ) {
|
49 |
+
if ( ! isset( $fields['billing'] ) ) {
|
50 |
return $fields;
|
51 |
}
|
52 |
$wooccm_fields = WOOCCM()->billing->get_fields();
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: checkout field editor, woocommerce checkout field editor, checkout manager
|
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 6.0.1
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 6.0.7.
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 6.6.1
|
11 |
License: GPLv3
|
@@ -149,9 +149,11 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
152 |
= 6.0.7.4
|
153 |
* Fix. WooCommerce Checkout remove fields
|
154 |
-
* Fix. WooCommerce Checkout conditional fields
|
155 |
|
156 |
= 6.0.7.2
|
157 |
* Fix. WooCommerce Checkout email settings save
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 6.0.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 6.0.7.5
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 6.6.1
|
11 |
License: GPLv3
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= 6.0.7.5
|
153 |
+
* Fix. WooCommerce Checkout billing fields
|
154 |
+
|
155 |
= 6.0.7.4
|
156 |
* Fix. WooCommerce Checkout remove fields
|
|
|
157 |
|
158 |
= 6.0.7.2
|
159 |
* Fix. WooCommerce Checkout email settings save
|
woocommerce-checkout-manager.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Checkout Fields Manager for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manage and customize WooCommerce Checkout fields (Add, Edit, Delete or re-order fields).
|
7 |
-
* Version: 6.0.7.
|
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 Fields Manager for WooCommerce' );
|
21 |
}
|
22 |
if ( ! defined( 'WOOCCM_PLUGIN_VERSION' ) ) {
|
23 |
-
define( 'WOOCCM_PLUGIN_VERSION', '6.0.7.
|
24 |
}
|
25 |
if ( ! defined( 'WOOCCM_PLUGIN_FILE' ) ) {
|
26 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|
4 |
* Plugin Name: Checkout Fields Manager for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manage and customize WooCommerce Checkout fields (Add, Edit, Delete or re-order fields).
|
7 |
+
* Version: 6.0.7.5
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
20 |
define( 'WOOCCM_PLUGIN_NAME', 'Checkout Fields Manager for WooCommerce' );
|
21 |
}
|
22 |
if ( ! defined( 'WOOCCM_PLUGIN_VERSION' ) ) {
|
23 |
+
define( 'WOOCCM_PLUGIN_VERSION', '6.0.7.5' );
|
24 |
}
|
25 |
if ( ! defined( 'WOOCCM_PLUGIN_FILE' ) ) {
|
26 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|