Version Description
- Fix: shipping address forced label click disabled
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 5.3.7 |
Comparing to | |
See all releases |
Code changes from version 5.3.6 to 5.3.7
includes/controller/class-wooccm-checkout.php
CHANGED
@@ -75,13 +75,18 @@ class WOOCCM_Checkout_Controller
|
|
75 |
{
|
76 |
|
77 |
if (get_option('wooccm_checkout_force_shipping_address', 'no') == 'yes') {
|
78 |
-
|
79 |
-
|
80 |
-
|
|
|
|
|
81 |
display: none !important;
|
82 |
}
|
83 |
-
|
|
|
|
|
84 |
.woocommerce-shipping-fields .shipping_address {
|
|
|
85 |
display: block !important;
|
86 |
}
|
87 |
</style>
|
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;
|
91 |
}
|
92 |
</style>
|
readme.txt
CHANGED
@@ -4,9 +4,9 @@ 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.7
|
7 |
-
Stable tag: 5.3.
|
8 |
WC requires at least: 3.1.0
|
9 |
-
WC tested up to: 5.
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
|
@@ -107,6 +107,8 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
110 |
|
111 |
= 5.3.6 =
|
112 |
* Fix: WooCommerce 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.7
|
7 |
+
Stable tag: 5.3.7
|
8 |
WC requires at least: 3.1.0
|
9 |
+
WC tested up to: 5.4
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 5.3.7 =
|
111 |
+
* Fix: shipping address forced label click disabled
|
112 |
|
113 |
= 5.3.6 =
|
114 |
* Fix: WooCommerce compatbility
|
woocommerce-checkout-manager.php
CHANGED
@@ -4,13 +4,13 @@
|
|
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
|
11 |
* Text Domain: woocommerce-checkout-manager
|
12 |
* WC requires at least: 3.1.0
|
13 |
-
* WC tested up to: 5.
|
14 |
*/
|
15 |
if (!defined('ABSPATH')) {
|
16 |
die('-1');
|
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.7
|
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: 5.4
|
14 |
*/
|
15 |
if (!defined('ABSPATH')) {
|
16 |
die('-1');
|