Version Description
- Fix: undefined format_date
Download this release
Release Info
| Developer | quadlayers |
| Plugin | |
| Version | 4.7.5 |
| Comparing to | |
| See all releases | |
Code changes from version 4.7.4 to 4.7.5
includes/model/class-wooccm-field.php
CHANGED
|
@@ -158,6 +158,7 @@ class WOOCCM_Field {
|
|
| 158 |
'time_limit_end' => null,
|
| 159 |
'time_limit_interval' => null,
|
| 160 |
'date_limit' => 'fixed',
|
|
|
|
| 161 |
'date_limit_variable_min' => 1,
|
| 162 |
'date_limit_variable_max' => 1,
|
| 163 |
'date_limit_fixed_min' => date('Y-m-d'),
|
| 158 |
'time_limit_end' => null,
|
| 159 |
'time_limit_interval' => null,
|
| 160 |
'date_limit' => 'fixed',
|
| 161 |
+
'date_format' => 'fixed',
|
| 162 |
'date_limit_variable_min' => 1,
|
| 163 |
'date_limit_variable_max' => 1,
|
| 164 |
'date_limit_fixed_min' => date('Y-m-d'),
|
includes/view/backend/pages/modals/parts/panel-datepicker.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<div class="options_group wooccm-premium">
|
| 3 |
<p class="form-field">
|
| 4 |
<label><?php esc_html_e('Date format', 'woocommerce-checkout-manager'); ?></label>
|
| 5 |
-
<input class="short" type="text" placeholder="dd-mm-yy" name="
|
| 6 |
<span class="description"><a href="https://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date and time formatting</a>.</span>
|
| 7 |
<span class="description premium">(<?php esc_html_e('This is a premium feature', 'woocommerce-checkout-manager'); ?>)</span>
|
| 8 |
</p>
|
| 2 |
<div class="options_group wooccm-premium">
|
| 3 |
<p class="form-field">
|
| 4 |
<label><?php esc_html_e('Date format', 'woocommerce-checkout-manager'); ?></label>
|
| 5 |
+
<input class="short" type="text" placeholder="dd-mm-yy" name="date_format" value="{{data.date_format}}">
|
| 6 |
<span class="description"><a href="https://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date and time formatting</a>.</span>
|
| 7 |
<span class="description premium">(<?php esc_html_e('This is a premium feature', 'woocommerce-checkout-manager'); ?>)</span>
|
| 8 |
</p>
|
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.3.0
|
| 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.4 =
|
| 103 |
* Fix: WordPress 5.3.0 compatibility
|
| 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.3.0
|
| 7 |
+
Stable tag: 4.7.5
|
| 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.5 =
|
| 103 |
+
* Fix: undefined format_date
|
| 104 |
+
|
| 105 |
= 4.7.4 =
|
| 106 |
* Fix: WordPress 5.3.0 compatibility
|
| 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.5
|
| 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.5');
|
| 21 |
}
|
| 22 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
| 23 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|
