Version Description
- Fix: premium compatbility
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 5.1.7 |
Comparing to | |
See all releases |
Code changes from version 5.1.6 to 5.1.7
includes/view/backend/pages/modals/parts/panel-timepicker.php
CHANGED
@@ -11,12 +11,12 @@
|
|
11 |
<div class="options_group wooccm-premium">
|
12 |
<p class="form-field">
|
13 |
<label><?php esc_html_e('Hour start', 'woocommerce-checkout-manager'); ?></label>
|
14 |
-
<input <# if ( !data.select2 ) { #>disabled="disabled"<# } #> class="short" type="
|
15 |
<span class="description premium">(<?php esc_html_e('This is a premium feature', 'woocommerce-checkout-manager'); ?>)</span>
|
16 |
</p>
|
17 |
<p class="form-field">
|
18 |
<label><?php esc_html_e('Hour end', 'woocommerce-checkout-manager'); ?></label>
|
19 |
-
<input <# if ( !data.select2 ) { #>disabled="disabled"<# } #> class="short" type="
|
20 |
<span class="description premium">(<?php esc_html_e('This is a premium feature', 'woocommerce-checkout-manager'); ?>)</span>
|
21 |
</p>
|
22 |
<p class="form-field">
|
11 |
<div class="options_group wooccm-premium">
|
12 |
<p class="form-field">
|
13 |
<label><?php esc_html_e('Hour start', 'woocommerce-checkout-manager'); ?></label>
|
14 |
+
<input <# if ( !data.select2 ) { #>disabled="disabled"<# } #> class="short" type="number" min="0" max="24" placeholder="6" step="1" name="time_limit_start" value="{{data.time_limit_start}}">
|
15 |
<span class="description premium">(<?php esc_html_e('This is a premium feature', 'woocommerce-checkout-manager'); ?>)</span>
|
16 |
</p>
|
17 |
<p class="form-field">
|
18 |
<label><?php esc_html_e('Hour end', 'woocommerce-checkout-manager'); ?></label>
|
19 |
+
<input <# if ( !data.select2 ) { #>disabled="disabled"<# } #> class="short" type="number" min="0" max="24" placeholder="9" step="1" name="time_limit_end" value="{{data.time_limit_end}}">
|
20 |
<span class="description premium">(<?php esc_html_e('This is a premium feature', 'woocommerce-checkout-manager'); ?>)</span>
|
21 |
</p>
|
22 |
<p class="form-field">
|
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.4
|
6 |
Tested up to: 5.4.2
|
7 |
-
Stable tag: 5.1.
|
8 |
WC requires at least: 3.1.0
|
9 |
WC tested up to: 4.3.1
|
10 |
License: GPLv3
|
@@ -107,6 +107,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
110 |
= 5.1.6 =
|
111 |
* Fix: premium compatbility
|
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.4.2
|
7 |
+
Stable tag: 5.1.7
|
8 |
WC requires at least: 3.1.0
|
9 |
WC tested up to: 4.3.1
|
10 |
License: GPLv3
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 5.1.7 =
|
111 |
+
* Fix: premium compatbility
|
112 |
+
|
113 |
= 5.1.6 =
|
114 |
* Fix: premium compatbility
|
115 |
|
woocommerce-checkout-manager.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Checkout Manager for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manages WooCommerce Checkout, the advanced way.
|
7 |
-
* Version: 5.1.
|
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 Manager for WooCommerce');
|
21 |
}
|
22 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
23 |
-
define('WOOCCM_PLUGIN_VERSION', '5.1.
|
24 |
}
|
25 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
26 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|
4 |
* Plugin Name: Checkout Manager for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manages WooCommerce Checkout, the advanced way.
|
7 |
+
* Version: 5.1.7
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
20 |
define('WOOCCM_PLUGIN_NAME', 'Checkout Manager for WooCommerce');
|
21 |
}
|
22 |
if (!defined('WOOCCM_PLUGIN_VERSION')) {
|
23 |
+
define('WOOCCM_PLUGIN_VERSION', '5.1.7');
|
24 |
}
|
25 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
26 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|