Version Description
- Fix: suggestions plugins update
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 4.7.1 |
Comparing to | |
See all releases |
Code changes from version 4.7.0 to 4.7.1
includes/class-wooccm-suggestions-list-table.php
CHANGED
@@ -99,6 +99,7 @@ class WOOCCM_Suggestions_List_Table extends WP_Plugin_Install_List_Table {
|
|
99 |
wp_enqueue_script('plugin-install');
|
100 |
wp_enqueue_script('thickbox');
|
101 |
wp_enqueue_script('updates');
|
|
|
102 |
|
103 |
wp_reset_vars(array('tab'));
|
104 |
|
@@ -127,6 +128,11 @@ class WOOCCM_Suggestions_List_Table extends WP_Plugin_Install_List_Table {
|
|
127 |
}
|
128 |
|
129 |
$this->items = $this->get_plugins();
|
|
|
|
|
|
|
|
|
|
|
130 |
}
|
131 |
|
132 |
}
|
99 |
wp_enqueue_script('plugin-install');
|
100 |
wp_enqueue_script('thickbox');
|
101 |
wp_enqueue_script('updates');
|
102 |
+
wp_localize_script('updates', 'pagenow', 'plugin-install-network');
|
103 |
|
104 |
wp_reset_vars(array('tab'));
|
105 |
|
128 |
}
|
129 |
|
130 |
$this->items = $this->get_plugins();
|
131 |
+
|
132 |
+
|
133 |
+
wp_localize_script('updates', '_wpUpdatesItemCounts', array(
|
134 |
+
'totals' => wp_get_update_data())
|
135 |
+
);
|
136 |
}
|
137 |
|
138 |
}
|
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.0
|
6 |
Tested up to: 5.2.4
|
7 |
-
Stable tag: 4.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -99,6 +99,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
102 |
= 4.7.0 =
|
103 |
* Fix: save field settings
|
104 |
|
4 |
Tags: woocommerce, woocommerce checkout, field manager, checkout editor, checkout field, shipping field, billing field, order field, additional field
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.2.4
|
7 |
+
Stable tag: 4.7.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 4.7.1 =
|
103 |
+
* Fix: suggestions plugins update
|
104 |
+
|
105 |
= 4.7.0 =
|
106 |
* Fix: save field settings
|
107 |
|
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.7.
|
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.7.
|
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.7.1
|
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.7.1');
|
21 |
}
|
22 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
23 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|