WooCommerce Checkout Manager - Version 4.9.7

Version Description

  • Fix: woocommerce checkout account
Download this release

Release Info

Developer quadlayers
Plugin Icon 128x128 WooCommerce Checkout Manager
Version 4.9.7
Comparing to
See all releases

Code changes from version 4.9.6 to 4.9.7

includes/class-wooccm.php CHANGED
@@ -40,11 +40,11 @@ final class WOOCCM {
40
  include_once( WOOCCM_PLUGIN_DIR . 'includes/class-wooccm-upload.php' );
41
  include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-checkout.php' );
42
  include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-field.php' );
43
- include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-order.php' );
44
- include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-email.php' );
45
- include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-advanced.php' );
46
- include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-premium.php' );
47
- include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-suggestions.php' );
48
  }
49
 
50
  public function register_scripts() {
40
  include_once( WOOCCM_PLUGIN_DIR . 'includes/class-wooccm-upload.php' );
41
  include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-checkout.php' );
42
  include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-field.php' );
43
+ // include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-order.php' );
44
+ // include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-email.php' );
45
+ // include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-advanced.php' );
46
+ // include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-premium.php' );
47
+ // include_once( WOOCCM_PLUGIN_DIR . 'includes/controller/class-wooccm-suggestions.php' );
48
  }
49
 
50
  public function register_scripts() {
includes/controller/class-wooccm-checkout.php CHANGED
@@ -64,8 +64,11 @@ class WOOCCM_Checkout_Controller {
64
  if (get_option('wooccm_checkout_force_create_account', 'no') == 'yes') {
65
  ?>
66
  <style>
67
- .create-account {
68
- display:none;
 
 
 
69
  }
70
  </style>
71
  <script>
64
  if (get_option('wooccm_checkout_force_create_account', 'no') == 'yes') {
65
  ?>
66
  <style>
67
+ div.create-account {
68
+ display: block!important;
69
+ }
70
+ p.create-account {
71
+ display: none!important;
72
  }
73
  </style>
74
  <script>
readme.txt CHANGED
@@ -3,10 +3,10 @@ Contributors: quadlayers
3
  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.3.2
7
- Stable tag: 4.9.6
8
  WC requires at least: 3.0
9
- WC tested up to: 3.9
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -16,7 +16,7 @@ WooCommerce Checkout manager is the most advanced way to customize checkout, man
16
 
17
  [Premium](https://quadlayers.com/portfolio/woocommerce-checkout-manager/) | [Demo](https://quadlayers.com/woocommerce-checkout-manager/checkout/?add-to-cart=32) | [Documentation](https://quadlayers.com/documentation/woocommerce-checkout-manager/) | [Community](https://www.facebook.com/groups/quadlayers/)
18
 
19
- WooCommerce checkout manager is a plugin built to be the wizard of checkout pages. Helps to modify in an intuitive way, allows fields customization, to extend bill�s information and to create any field required at WooCommerce checkout.
20
 
21
  == Description ==
22
 
@@ -107,6 +107,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
107
 
108
  == Changelog ==
109
 
 
 
 
110
  = 4.9.6 =
111
  * Fix: woocommerce checkout fields filter by category
112
  * Fix: woocommerce checkout state field required
3
  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: 4.9.7
8
  WC requires at least: 3.0
9
+ WC tested up to: 4.0
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
16
 
17
  [Premium](https://quadlayers.com/portfolio/woocommerce-checkout-manager/) | [Demo](https://quadlayers.com/woocommerce-checkout-manager/checkout/?add-to-cart=32) | [Documentation](https://quadlayers.com/documentation/woocommerce-checkout-manager/) | [Community](https://www.facebook.com/groups/quadlayers/)
18
 
19
+ WooCommerce checkout manager is a plugin built to be the wizard of checkout pages. Helps to modify in an intuitive way, allows fields customization, to extend bill�s information and to create any field required at WooCommerce checkout.
20
 
21
  == Description ==
22
 
107
 
108
  == Changelog ==
109
 
110
+ = 4.9.7 =
111
+ * Fix: woocommerce checkout account
112
+
113
  = 4.9.6 =
114
  * Fix: woocommerce checkout fields filter by category
115
  * Fix: woocommerce checkout state field required
woocommerce-checkout-manager.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: WooCommerce Checkout Manager
5
  * Description: Manages WooCommerce Checkout, the advanced way.
6
- * Version: 4.9.6
7
  * Author: QuadLayers
8
  * Author URI: https://www.quadlayers.com
9
  * Copyright: 2019 QuadLayers (https://www.quadlayers.com)
@@ -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', '4.9.6');
21
  }
22
  if (!defined('WOOCCM_PLUGIN_FILE')) {
23
  define('WOOCCM_PLUGIN_FILE', __FILE__);
3
  /**
4
  * Plugin Name: WooCommerce Checkout Manager
5
  * Description: Manages WooCommerce Checkout, the advanced way.
6
+ * Version: 4.9.7
7
  * Author: QuadLayers
8
  * Author URI: https://www.quadlayers.com
9
  * Copyright: 2019 QuadLayers (https://www.quadlayers.com)
17
  define('WOOCCM_PLUGIN_NAME', 'WooCommerce Checkout Manager');
18
  }
19
  if (!defined('WOOCCM_PLUGIN_VERSION')) {
20
+ define('WOOCCM_PLUGIN_VERSION', '4.9.7');
21
  }
22
  if (!defined('WOOCCM_PLUGIN_FILE')) {
23
  define('WOOCCM_PLUGIN_FILE', __FILE__);