WooCommerce Checkout Field Editor (Manager) Pro - Version 1.4.1

Version Description

  • Fixed the issue of showing option value instead of option text in order details page.
  • WooCommerce compatible version updated.
Download this release

Release Info

Developer ThemeHigh
Plugin Icon 128x128 WooCommerce Checkout Field Editor (Manager) Pro
Version 1.4.1
Comparing to
See all releases

Code changes from version 1.4.0 to 1.4.1

checkout-form-designer.php CHANGED
@@ -3,13 +3,13 @@
3
  * Plugin Name: Checkout Field Editor for WooCommerce
4
  * Description: Customize WooCommerce checkout fields(Add, Edit, Delete and re-arrange fields).
5
  * Author: ThemeHigh
6
- * Version: 1.4.0
7
  * Author URI: https://www.themehigh.com
8
  * Plugin URI: https://www.themehigh.com
9
  * Text Domain: woo-checkout-field-editor-pro
10
  * Domain Path: /languages
11
  * WC requires at least: 3.0.0
12
- * WC tested up to: 3.8.1
13
  */
14
 
15
  if(!defined( 'ABSPATH' )) exit;
@@ -25,7 +25,7 @@ if (!function_exists('is_woocommerce_active')){
25
  }
26
 
27
  if(is_woocommerce_active()) {
28
- define('THWCFD_VERSION', '1.4.0');
29
  !defined('THWCFD_BASE_NAME') && define('THWCFD_BASE_NAME', plugin_basename( __FILE__ ));
30
  !defined('THWCFD_PATH') && define('THWCFD_PATH', plugin_dir_path( __FILE__ ));
31
  !defined('THWCFD_URL') && define('THWCFD_URL', plugins_url( '/', __FILE__ ));
3
  * Plugin Name: Checkout Field Editor for WooCommerce
4
  * Description: Customize WooCommerce checkout fields(Add, Edit, Delete and re-arrange fields).
5
  * Author: ThemeHigh
6
+ * Version: 1.4.1
7
  * Author URI: https://www.themehigh.com
8
  * Plugin URI: https://www.themehigh.com
9
  * Text Domain: woo-checkout-field-editor-pro
10
  * Domain Path: /languages
11
  * WC requires at least: 3.0.0
12
+ * WC tested up to: 3.9.2
13
  */
14
 
15
  if(!defined( 'ABSPATH' )) exit;
25
  }
26
 
27
  if(is_woocommerce_active()) {
28
+ define('THWCFD_VERSION', '1.4.1');
29
  !defined('THWCFD_BASE_NAME') && define('THWCFD_BASE_NAME', plugin_basename( __FILE__ ));
30
  !defined('THWCFD_PATH') && define('THWCFD_PATH', plugin_dir_path( __FILE__ ));
31
  !defined('THWCFD_URL') && define('THWCFD_URL', plugins_url( '/', __FILE__ ));
classes/class-thwcfd-checkout.php CHANGED
@@ -412,7 +412,7 @@ class THWCFD_Checkout {
412
  $label = isset($field['label']) && $field['label'] ? THWCFD_Utils::t($field['label']) : $key;
413
 
414
  $label = esc_attr($label);
415
- $value = wptexturize($value);
416
  $value = THWCFD_Utils::get_option_text($field, $value);
417
 
418
  if(is_account_page()){
412
  $label = isset($field['label']) && $field['label'] ? THWCFD_Utils::t($field['label']) : $key;
413
 
414
  $label = esc_attr($label);
415
+ //$value = wptexturize($value);
416
  $value = THWCFD_Utils::get_option_text($field, $value);
417
 
418
  if(is_account_page()){
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://themehigh.com/
4
  Tags: checkout field editor, woocommerce checkout field editor, checkout manager, woocommerce checkout manager, checkout field customizer, checkout form editor, checkout form customizer, checkout, WooCommerce checkout, checkout form designer, woocommerce checkout fields, woocommerce checkout addons
5
  Requires at least: 4.9
6
  Tested up to: 5.3
7
- Stable tag: 1.4.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -178,6 +178,10 @@ Yes. There is a button 'reset to default fields' to go back to the WooCommerce d
178
  8. Newly added field
179
 
180
  == Changelog ==
 
 
 
 
181
  = 1.4.0 =
182
  * Fixed the issue of displaying option value instead of option text in order details pages.
183
  * Improved radio button display style.
4
  Tags: checkout field editor, woocommerce checkout field editor, checkout manager, woocommerce checkout manager, checkout field customizer, checkout form editor, checkout form customizer, checkout, WooCommerce checkout, checkout form designer, woocommerce checkout fields, woocommerce checkout addons
5
  Requires at least: 4.9
6
  Tested up to: 5.3
7
+ Stable tag: 1.4.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
178
  8. Newly added field
179
 
180
  == Changelog ==
181
+ = 1.4.1 =
182
+ * Fixed the issue of showing option value instead of option text in order details page.
183
+ * WooCommerce compatible version updated.
184
+
185
  = 1.4.0 =
186
  * Fixed the issue of displaying option value instead of option text in order details pages.
187
  * Improved radio button display style.