Version Description
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 6.2.2 |
Comparing to | |
See all releases |
Code changes from version 6.2.1 to 6.2.2
- includes/class-wooccm-notices.php +18 -16
- readme.txt +4 -1
- woocommerce-checkout-manager.php +2 -2
includes/class-wooccm-notices.php
CHANGED
@@ -42,22 +42,24 @@ class WOOCCM_Notices {
|
|
42 |
?>
|
43 |
<script>
|
44 |
(function($) {
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
|
|
|
|
61 |
})(jQuery);
|
62 |
</script>
|
63 |
<?php
|
42 |
?>
|
43 |
<script>
|
44 |
(function($) {
|
45 |
+
$(document).ready(()=> {
|
46 |
+
$('.wooccm-notice').on('click', '.notice-dismiss', function(e) {
|
47 |
+
e.preventDefault();
|
48 |
+
var notice_id = $(e.delegateTarget).data('notice_id');
|
49 |
+
$.ajax({
|
50 |
+
type: 'POST',
|
51 |
+
url: ajaxurl,
|
52 |
+
data: {
|
53 |
+
notice_id: notice_id,
|
54 |
+
action: 'wooccm_dismiss_notice',
|
55 |
+
nonce: '<?php echo esc_attr( wp_create_nonce( 'wooccm_dismiss_notice' ) ); ?>'
|
56 |
+
},
|
57 |
+
success: function(response) {
|
58 |
+
console.log(response);
|
59 |
+
},
|
60 |
+
});
|
61 |
+
});
|
62 |
+
})
|
63 |
})(jQuery);
|
64 |
</script>
|
65 |
<?php
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ 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.2.
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 6.8
|
11 |
License: GPLv3
|
@@ -149,6 +149,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
152 |
= 6.2.1
|
153 |
* Fix. PHP erros
|
154 |
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 6.0.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 6.2.2
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 6.8
|
11 |
License: GPLv3
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= 6.2.2
|
153 |
+
* Fix. PHP erros
|
154 |
+
|
155 |
= 6.2.1
|
156 |
* Fix. PHP erros
|
157 |
|
woocommerce-checkout-manager.php
CHANGED
@@ -4,7 +4,7 @@
|
|
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.2.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
@@ -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.2.
|
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.2.2
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
20 |
define( 'WOOCCM_PLUGIN_NAME', 'Checkout Fields Manager for WooCommerce' );
|
21 |
}
|
22 |
if ( ! defined( 'WOOCCM_PLUGIN_VERSION' ) ) {
|
23 |
+
define( 'WOOCCM_PLUGIN_VERSION', '6.2.2' );
|
24 |
}
|
25 |
if ( ! defined( 'WOOCCM_PLUGIN_FILE' ) ) {
|
26 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|