Version Description
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 6.0.8 |
Comparing to | |
See all releases |
Code changes from version 6.0.7.8 to 6.0.8
includes/controller/class-wooccm-checkout.php
CHANGED
@@ -75,16 +75,11 @@ class WOOCCM_Checkout_Controller
|
|
75 |
{
|
76 |
|
77 |
if (get_option('wooccm_checkout_force_shipping_address', 'no') == 'yes') {
|
78 |
-
/* .woocommerce-shipping-fields h3:first-child label {
|
79 |
-
pointer-events: none !important;
|
80 |
-
} */
|
81 |
-
|
82 |
-
/* .woocommerce-shipping-fields h3:first-child input {
|
83 |
-
display: none !important;
|
84 |
-
}
|
85 |
-
*/
|
86 |
?>
|
87 |
<style>
|
|
|
|
|
|
|
88 |
.woocommerce-shipping-fields .shipping_address {
|
89 |
height: auto !important;
|
90 |
display: block !important;
|
75 |
{
|
76 |
|
77 |
if (get_option('wooccm_checkout_force_shipping_address', 'no') == 'yes') {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
?>
|
79 |
<style>
|
80 |
+
#ship-to-different-address-checkbox {
|
81 |
+
display: none;
|
82 |
+
}
|
83 |
.woocommerce-shipping-fields .shipping_address {
|
84 |
height: auto !important;
|
85 |
display: block !important;
|
readme.txt
CHANGED
@@ -5,9 +5,9 @@ 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.
|
9 |
WC requires at least: 3.1.0
|
10 |
-
WC tested up to: 6.
|
11 |
License: GPLv3
|
12 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
13 |
|
@@ -149,6 +149,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
152 |
= 6.0.7.8
|
153 |
* Fix. WooCommerce Checkout conditional fields
|
154 |
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 6.0.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 6.0.8
|
9 |
WC requires at least: 3.1.0
|
10 |
+
WC tested up to: 6.7
|
11 |
License: GPLv3
|
12 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
13 |
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= 6.0.8
|
153 |
+
* Fix. WooCommerce Checkout force shipping address checkbox
|
154 |
+
|
155 |
= 6.0.7.8
|
156 |
* Fix. WooCommerce Checkout conditional fields
|
157 |
|
woocommerce-checkout-manager.php
CHANGED
@@ -4,13 +4,13 @@
|
|
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.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
11 |
* Text Domain: woocommerce-checkout-manager
|
12 |
* WC requires at least: 3.1.0
|
13 |
-
* WC tested up to: 6.
|
14 |
*/
|
15 |
if ( ! defined( 'ABSPATH' ) ) {
|
16 |
die( '-1' );
|
@@ -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.
|
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.8
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
11 |
* Text Domain: woocommerce-checkout-manager
|
12 |
* WC requires at least: 3.1.0
|
13 |
+
* WC tested up to: 6.7
|
14 |
*/
|
15 |
if ( ! defined( 'ABSPATH' ) ) {
|
16 |
die( '-1' );
|
20 |
define( 'WOOCCM_PLUGIN_NAME', 'Checkout Fields Manager for WooCommerce' );
|
21 |
}
|
22 |
if ( ! defined( 'WOOCCM_PLUGIN_VERSION' ) ) {
|
23 |
+
define( 'WOOCCM_PLUGIN_VERSION', '6.0.8' );
|
24 |
}
|
25 |
if ( ! defined( 'WOOCCM_PLUGIN_FILE' ) ) {
|
26 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|