WooCommerce Checkout Manager - Version 5.5.6

Version Description

  • Fix: WooCommerce compatibility
Download this release

Release Info

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

Code changes from version 5.5.5 to 5.5.6

Files changed (2) hide show
  1. readme.txt +5 -2
  2. woocommerce-checkout-manager.php +37 -37
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.9
7
- Stable tag: 5.5.5
8
  WC requires at least: 3.1.0
9
- WC tested up to: 6.2
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
 
@@ -107,6 +107,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
107
 
108
  == Changelog ==
109
 
 
 
 
110
  = 5.5.5 =
111
  * Fix: WordPress compatibility
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.9
7
+ Stable tag: 5.5.6
8
  WC requires at least: 3.1.0
9
+ WC tested up to: 6.4
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
 
107
 
108
  == Changelog ==
109
 
110
+ = 5.5.6 =
111
+ * Fix: WooCommerce compatibility
112
+
113
  = 5.5.5 =
114
  * Fix: WordPress compatibility
115
 
woocommerce-checkout-manager.php CHANGED
@@ -4,69 +4,69 @@
4
  * Plugin Name: Checkout Fields Manager for WooCommerce
5
  * Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
6
  * Description: Manages WooCommerce Checkout, the advanced way.
7
- * Version: 5.5.5
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.2
14
  */
15
- if (!defined('ABSPATH')) {
16
- die('-1');
17
  }
18
 
19
- 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', '5.5.5');
24
  }
25
- if (!defined('WOOCCM_PLUGIN_FILE')) {
26
- define('WOOCCM_PLUGIN_FILE', __FILE__);
27
  }
28
- if (!defined('WOOCCM_PLUGIN_DIR')) {
29
- define('WOOCCM_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR);
30
  }
31
- if (!defined('WOOCCM_PREFIX')) {
32
- define('WOOCCM_PREFIX', 'wooccm');
33
  }
34
- if (!defined('WOOCCM_WORDPRESS_URL')) {
35
- define('WOOCCM_WORDPRESS_URL', 'https://wordpress.org/plugins/woocommerce-checkout-manager/');
36
  }
37
- if (!defined('WOOCCM_REVIEW_URL')) {
38
- define('WOOCCM_REVIEW_URL', 'https://wordpress.org/support/plugin/woocommerce-checkout-manager/reviews/?filter=5#new-post');
39
  }
40
- if (!defined('WOOCCM_DOCUMENTATION_URL')) {
41
- define('WOOCCM_DOCUMENTATION_URL', 'https://quadlayers.com/documentation/woocommerce-checkout-manager/?utm_source=wooccm_admin');
42
  }
43
- if (!defined('WOOCCM_DEMO_URL')) {
44
- define('WOOCCM_DEMO_URL', 'https://quadlayers.com/portfolio/woocommerce-checkout-manager/?utm_source=wooccm_admin');
45
  }
46
- if (!defined('WOOCCM_PURCHASE_URL')) {
47
- define('WOOCCM_PURCHASE_URL', WOOCCM_DEMO_URL);
48
  }
49
- if (!defined('WOOCCM_SUPPORT_URL')) {
50
- define('WOOCCM_SUPPORT_URL', 'https://quadlayers.com/account/support/?utm_source=wooccm_admin');
51
  }
52
- if (!defined('WOOCCM_GROUP_URL')) {
53
- define('WOOCCM_GROUP_URL', 'https://www.facebook.com/groups/quadlayers');
54
  }
55
- if (!defined('WOOCCM_DEVELOPER')) {
56
- define('WOOCCM_DEVELOPER', false);
57
  }
58
 
59
- if (!class_exists('WOOCCM', false)) {
60
- include_once(WOOCCM_PLUGIN_DIR . 'includes/class-wooccm.php');
61
  }
62
 
63
- if (!class_exists('QL_Widget')) {
64
- include_once(WOOCCM_PLUGIN_DIR . 'includes/quadlayers/widget.php');
65
  }
66
 
67
- function WOOCCM()
68
- { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
69
- return WOOCCM::instance();
70
  }
71
 
72
  // Global for backwards compatibility.
4
  * Plugin Name: Checkout Fields Manager for WooCommerce
5
  * Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
6
  * Description: Manages WooCommerce Checkout, the advanced way.
7
+ * Version: 5.5.6
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.4
14
  */
15
+ if ( ! defined( 'ABSPATH' ) ) {
16
+ die( '-1' );
17
  }
18
 
19
+ 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', '5.5.6' );
24
  }
25
+ if ( ! defined( 'WOOCCM_PLUGIN_FILE' ) ) {
26
+ define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
27
  }
28
+ if ( ! defined( 'WOOCCM_PLUGIN_DIR' ) ) {
29
+ define( 'WOOCCM_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
30
  }
31
+ if ( ! defined( 'WOOCCM_PREFIX' ) ) {
32
+ define( 'WOOCCM_PREFIX', 'wooccm' );
33
  }
34
+ if ( ! defined( 'WOOCCM_WORDPRESS_URL' ) ) {
35
+ define( 'WOOCCM_WORDPRESS_URL', 'https://wordpress.org/plugins/woocommerce-checkout-manager/' );
36
  }
37
+ if ( ! defined( 'WOOCCM_REVIEW_URL' ) ) {
38
+ define( 'WOOCCM_REVIEW_URL', 'https://wordpress.org/support/plugin/woocommerce-checkout-manager/reviews/?filter=5#new-post' );
39
  }
40
+ if ( ! defined( 'WOOCCM_DOCUMENTATION_URL' ) ) {
41
+ define( 'WOOCCM_DOCUMENTATION_URL', 'https://quadlayers.com/documentation/woocommerce-checkout-manager/?utm_source=wooccm_admin' );
42
  }
43
+ if ( ! defined( 'WOOCCM_DEMO_URL' ) ) {
44
+ define( 'WOOCCM_DEMO_URL', 'https://quadlayers.com/portfolio/woocommerce-checkout-manager/?utm_source=wooccm_admin' );
45
  }
46
+ if ( ! defined( 'WOOCCM_PURCHASE_URL' ) ) {
47
+ define( 'WOOCCM_PURCHASE_URL', WOOCCM_DEMO_URL );
48
  }
49
+ if ( ! defined( 'WOOCCM_SUPPORT_URL' ) ) {
50
+ define( 'WOOCCM_SUPPORT_URL', 'https://quadlayers.com/account/support/?utm_source=wooccm_admin' );
51
  }
52
+ if ( ! defined( 'WOOCCM_GROUP_URL' ) ) {
53
+ define( 'WOOCCM_GROUP_URL', 'https://www.facebook.com/groups/quadlayers' );
54
  }
55
+ if ( ! defined( 'WOOCCM_DEVELOPER' ) ) {
56
+ define( 'WOOCCM_DEVELOPER', false );
57
  }
58
 
59
+ if ( ! class_exists( 'WOOCCM', false ) ) {
60
+ include_once WOOCCM_PLUGIN_DIR . 'includes/class-wooccm.php';
61
  }
62
 
63
+ if ( ! class_exists( 'QL_Widget' ) ) {
64
+ include_once WOOCCM_PLUGIN_DIR . 'includes/quadlayers/widget.php';
65
  }
66
 
67
+ function WOOCCM() {
68
+ // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
69
+ return WOOCCM::instance();
70
  }
71
 
72
  // Global for backwards compatibility.