Version Description
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 6.1.4 |
Comparing to | |
See all releases |
Code changes from version 6.1.3 to 6.1.4
includes/view/backend/meta-boxes/html-order-uploads.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
<th><?php esc_html_e('Image', 'woocommerce-checkout-manager'); ?></th>
|
6 |
<th><?php esc_html_e('Filename', 'woocommerce-checkout-manager'); ?></th>
|
7 |
<th><?php esc_html_e('Dimensions', 'woocommerce-checkout-manager'); ?></th>
|
8 |
-
<th><?php esc_html_e('Extension', '
|
9 |
<th class="column-actions"></th>
|
10 |
</tr>
|
11 |
</thead>
|
5 |
<th><?php esc_html_e('Image', 'woocommerce-checkout-manager'); ?></th>
|
6 |
<th><?php esc_html_e('Filename', 'woocommerce-checkout-manager'); ?></th>
|
7 |
<th><?php esc_html_e('Dimensions', 'woocommerce-checkout-manager'); ?></th>
|
8 |
+
<th><?php esc_html_e('Extension', 'woocommerce-checkout-manager'); ?></th>
|
9 |
<th class="column-actions"></th>
|
10 |
</tr>
|
11 |
</thead>
|
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.1.
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 6.7
|
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.1.3
|
153 |
* Fix. WooCommerce Checkout fields filters
|
154 |
* Fix. WooCommerce Checkout force shipping address checkbox
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 6.0.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 6.1.4
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 6.7
|
11 |
License: GPLv3
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= 6.1.4
|
153 |
+
* Fix. string translations
|
154 |
+
|
155 |
= 6.1.3
|
156 |
* Fix. WooCommerce Checkout fields filters
|
157 |
* Fix. WooCommerce Checkout force shipping address checkbox
|
templates/order/order-upload-files.php
CHANGED
@@ -14,7 +14,7 @@ $title = get_option( 'wooccm_order_upload_files_title', esc_html__( 'Uploaded fi
|
|
14 |
<th><?php esc_html_e( 'File', 'woocommerce-checkout-manager' ); ?></th>
|
15 |
<th><?php esc_html_e( 'Filename', 'woocommerce-checkout-manager' ); ?></th>
|
16 |
<th><?php esc_html_e( 'Dimensions', 'woocommerce-checkout-manager' ); ?></th>
|
17 |
-
<th><?php esc_html_e( 'Extension', '
|
18 |
<th class="column-actions"><?php esc_html_e( 'Actions', 'woocommerce-checkout-manager' ); ?></th>
|
19 |
</tr>
|
20 |
</thead>
|
14 |
<th><?php esc_html_e( 'File', 'woocommerce-checkout-manager' ); ?></th>
|
15 |
<th><?php esc_html_e( 'Filename', 'woocommerce-checkout-manager' ); ?></th>
|
16 |
<th><?php esc_html_e( 'Dimensions', 'woocommerce-checkout-manager' ); ?></th>
|
17 |
+
<th><?php esc_html_e( 'Extension', 'woocommerce-checkout-manager' ); ?></th>
|
18 |
<th class="column-actions"><?php esc_html_e( 'Actions', 'woocommerce-checkout-manager' ); ?></th>
|
19 |
</tr>
|
20 |
</thead>
|
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.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 Fields Manager for WooCommerce' );
|
21 |
}
|
22 |
if ( ! defined( 'WOOCCM_PLUGIN_VERSION' ) ) {
|
23 |
-
define( 'WOOCCM_PLUGIN_VERSION', '6.1.
|
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.1.4
|
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.1.4' );
|
24 |
}
|
25 |
if ( ! defined( 'WOOCCM_PLUGIN_FILE' ) ) {
|
26 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|