WooCommerce Checkout Manager - Version 6.1.8

Version Description

Download this release

Release Info

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

Code changes from version 6.1.7 to 6.1.8

includes/class-wooccm.php CHANGED
@@ -63,11 +63,11 @@ final class WOOCCM
63
 
64
  $checkout = include(WOOCCM_PLUGIN_DIR . 'assets/frontend/js/checkout.asset.php');
65
 
66
- wp_register_style('wooccm', plugins_url('assets/frontend/css/checkout.css', WOOCCM_PLUGIN_FILE), false, WOOCCM_PLUGIN_VERSION, 'all');
67
 
68
- wp_register_script('wooccm-checkout', plugins_url('assets/frontend/js/checkout.js', WOOCCM_PLUGIN_FILE), $checkout['dependencies'], $checkout['version'], true);
69
 
70
- wp_localize_script('wooccm-checkout', 'wooccm_upload', array(
71
  'ajax_url' => admin_url('admin-ajax.php'),
72
  'nonce' => wp_create_nonce('wooccm_upload'),
73
  'limit' => array(
63
 
64
  $checkout = include(WOOCCM_PLUGIN_DIR . 'assets/frontend/js/checkout.asset.php');
65
 
66
+ wp_register_style('wooccm-checkout-css', plugins_url('assets/frontend/css/checkout.css', WOOCCM_PLUGIN_FILE), false, WOOCCM_PLUGIN_VERSION, 'all');
67
 
68
+ wp_register_script('wooccm-checkout-js', plugins_url('assets/frontend/js/checkout.js', WOOCCM_PLUGIN_FILE), $checkout['dependencies'], $checkout['version'], true);
69
 
70
+ wp_localize_script('wooccm-checkout-js', 'wooccm_upload', array(
71
  'ajax_url' => admin_url('admin-ajax.php'),
72
  'nonce' => wp_create_nonce('wooccm_upload'),
73
  'limit' => array(
includes/controller/class-wooccm-checkout.php CHANGED
@@ -53,7 +53,7 @@ class WOOCCM_Checkout_Controller {
53
 
54
  $i18n = substr( get_user_locale(), 0, 2 );
55
 
56
- wp_enqueue_style( 'wooccm' );
57
 
58
  // Colorpicker
59
  // ---------------------------------------------------------------------
@@ -71,7 +71,7 @@ class WOOCCM_Checkout_Controller {
71
 
72
  // Checkout
73
  // ---------------------------------------------------------------------
74
- wp_enqueue_script( 'wooccm-checkout' );
75
  }
76
  }
77
 
53
 
54
  $i18n = substr( get_user_locale(), 0, 2 );
55
 
56
+ wp_enqueue_style( 'wooccm-checkout-css' );
57
 
58
  // Colorpicker
59
  // ---------------------------------------------------------------------
71
 
72
  // Checkout
73
  // ---------------------------------------------------------------------
74
+ wp_enqueue_script( 'wooccm-checkout-js' );
75
  }
76
  }
77
 
includes/controller/class-wooccm-order.php CHANGED
@@ -49,7 +49,7 @@ class WOOCCM_Order_Controller extends WOOCCM_Upload {
49
 
50
  WOOCCM()->register_scripts();
51
 
52
- wp_enqueue_style( 'wooccm' );
53
  wp_enqueue_style( 'dashicons' );
54
  wp_enqueue_script( 'wooccm-order-upload' );
55
  }
49
 
50
  WOOCCM()->register_scripts();
51
 
52
+ wp_enqueue_style( 'wooccm-checkout-css' );
53
  wp_enqueue_style( 'dashicons' );
54
  wp_enqueue_script( 'wooccm-order-upload' );
55
  }
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.1.7
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,6 +149,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
149
 
150
  == Changelog ==
151
 
 
 
 
152
  = 6.1.7
153
  * Fix. WooCommerce Account fields remove
154
 
5
  Requires at least: 4.9
6
  Tested up to: 6.0.1
7
  Requires PHP: 5.6
8
+ Stable tag: 6.1.8
9
  WC requires at least: 3.1.0
10
+ WC tested up to: 6.8
11
  License: GPLv3
12
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
13
 
149
 
150
  == Changelog ==
151
 
152
+ = 6.1.8
153
+ * Fix. WooCommerce 6.8 compatibility
154
+
155
  = 6.1.7
156
  * Fix. WooCommerce Account fields remove
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.1.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: 6.7
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.1.7' );
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.1.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.8
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.1.8' );
24
  }
25
  if ( ! defined( 'WOOCCM_PLUGIN_FILE' ) ) {
26
  define( 'WOOCCM_PLUGIN_FILE', __FILE__ );