Version Description
- Fix: woocommerce account conditional fields
Download this release
Release Info
| Developer | quadlayers |
| Plugin | |
| Version | 5.0.5 |
| Comparing to | |
| See all releases | |
Code changes from version 5.0.4 to 5.0.5
includes/controller/class-wooccm-checkout.php
CHANGED
|
@@ -17,7 +17,7 @@ class WOOCCM_Checkout_Controller {
|
|
| 17 |
|
| 18 |
public function enqueue_scripts() {
|
| 19 |
|
| 20 |
-
if (is_checkout()) {
|
| 21 |
|
| 22 |
WOOCCM()->register_scripts();
|
| 23 |
|
| 17 |
|
| 18 |
public function enqueue_scripts() {
|
| 19 |
|
| 20 |
+
if (is_checkout() || is_account_page()) {
|
| 21 |
|
| 22 |
WOOCCM()->register_scripts();
|
| 23 |
|
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.0
|
| 7 |
-
Stable tag: 5.0.
|
| 8 |
WC requires at least: 3.0
|
| 9 |
WC tested up to: 4.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.0.4 =
|
| 111 |
* Fix: woocommerce checkout datepicker required
|
| 112 |
|
| 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.0
|
| 7 |
+
Stable tag: 5.0.5
|
| 8 |
WC requires at least: 3.0
|
| 9 |
WC tested up to: 4.0
|
| 10 |
License: GPLv2 or later
|
| 107 |
|
| 108 |
== Changelog ==
|
| 109 |
|
| 110 |
+
= 5.0.5 =
|
| 111 |
+
* Fix: woocommerce account conditional fields
|
| 112 |
+
|
| 113 |
= 5.0.4 =
|
| 114 |
* Fix: woocommerce checkout datepicker required
|
| 115 |
|
woocommerce-checkout-manager.php
CHANGED
|
@@ -17,7 +17,7 @@ if (!defined('WOOCCM_PLUGIN_NAME')) {
|
|
| 17 |
define('WOOCCM_PLUGIN_NAME', 'WooCommerce Checkout Manager');
|
| 18 |
}
|
| 19 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
| 20 |
-
define('WOOCCM_PLUGIN_VERSION', '5.0.
|
| 21 |
}
|
| 22 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
| 23 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|
| 17 |
define('WOOCCM_PLUGIN_NAME', 'WooCommerce Checkout Manager');
|
| 18 |
}
|
| 19 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
| 20 |
+
define('WOOCCM_PLUGIN_VERSION', '5.0.5');
|
| 21 |
}
|
| 22 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
| 23 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|
