Version Description
- Fix: datepicker
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 4.7.7 |
Comparing to | |
See all releases |
Code changes from version 4.7.6 to 4.7.7
includes/controller/class-wooccm-email.php
CHANGED
@@ -34,7 +34,7 @@ class WOOCCM_Order_Email_Controller {
|
|
34 |
'yes' => esc_html__('Yes', 'woocommerce-checkout-manager-pro'),
|
35 |
'no' => esc_html__('No', 'woocommerce-checkout-manager-pro'),
|
36 |
),
|
37 |
-
'default' => '
|
38 |
),
|
39 |
array(
|
40 |
'name' => esc_html__('Add for this order status', 'woocommerce-checkout-manager-pro'),
|
@@ -43,6 +43,7 @@ class WOOCCM_Order_Email_Controller {
|
|
43 |
'type' => 'multiselect',
|
44 |
'class' => 'chosen_select wooccm-premium-field',
|
45 |
'options' => wc_get_order_statuses(),
|
|
|
46 |
),
|
47 |
array(
|
48 |
'name' => esc_html__('Add custom fields title', 'woocommerce-checkout-manager-pro'),
|
34 |
'yes' => esc_html__('Yes', 'woocommerce-checkout-manager-pro'),
|
35 |
'no' => esc_html__('No', 'woocommerce-checkout-manager-pro'),
|
36 |
),
|
37 |
+
'default' => 'yes',
|
38 |
),
|
39 |
array(
|
40 |
'name' => esc_html__('Add for this order status', 'woocommerce-checkout-manager-pro'),
|
43 |
'type' => 'multiselect',
|
44 |
'class' => 'chosen_select wooccm-premium-field',
|
45 |
'options' => wc_get_order_statuses(),
|
46 |
+
'default' => array_keys(wc_get_order_statuses()),
|
47 |
),
|
48 |
array(
|
49 |
'name' => esc_html__('Add custom fields title', 'woocommerce-checkout-manager-pro'),
|
includes/model/class-wooccm-field.php
CHANGED
@@ -158,7 +158,7 @@ class WOOCCM_Field {
|
|
158 |
'time_limit_end' => null,
|
159 |
'time_limit_interval' => null,
|
160 |
'date_limit' => 'fixed',
|
161 |
-
'date_format' => '
|
162 |
'date_limit_variable_min' => 1,
|
163 |
'date_limit_variable_max' => 1,
|
164 |
'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' => '',
|
162 |
'date_limit_variable_min' => 1,
|
163 |
'date_limit_variable_max' => 1,
|
164 |
'date_limit_fixed_min' => date('Y-m-d'),
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: quadlayers
|
3 |
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:
|
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.6 =
|
103 |
* Fix: select2
|
104 |
|
2 |
Contributors: quadlayers
|
3 |
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: 4.6
|
6 |
Tested up to: 5.3.0
|
7 |
+
Stable tag: 4.7.7
|
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.7 =
|
103 |
+
* Fix: datepicker
|
104 |
+
|
105 |
= 4.7.6 =
|
106 |
* Fix: select2
|
107 |
|
templates/order/order-custom-fields.php
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
<h2 class="woocommerce-order-details__title"><?php echo ($title = get_option('wooccm_order_custom_fields_title', false)) ? esc_html($title) : esc_html__('Custom fields', 'woocommerce-checkout-manager'); ?></h2>
|
2 |
-
<?php $option = WOOCCM()->billing->get_option_types(); ?>
|
3 |
<table class="woocommerce-table shop_table order_details">
|
4 |
<tbody>
|
5 |
<?php
|
1 |
<h2 class="woocommerce-order-details__title"><?php echo ($title = get_option('wooccm_order_custom_fields_title', false)) ? esc_html($title) : esc_html__('Custom fields', 'woocommerce-checkout-manager'); ?></h2>
|
|
|
2 |
<table class="woocommerce-table shop_table order_details">
|
3 |
<tbody>
|
4 |
<?php
|
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.7
|
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.7');
|
21 |
}
|
22 |
if (!defined('WOOCCM_PLUGIN_FILE')) {
|
23 |
define('WOOCCM_PLUGIN_FILE', __FILE__);
|