Version Description
Download this release
Release Info
| Developer | quadlayers |
| Plugin | |
| Version | 6.2.4 |
| Comparing to | |
| See all releases | |
Code changes from version 6.2.3 to 6.2.4
includes/view/frontend/class-wooccm-fields-i18n.php
CHANGED
|
@@ -114,8 +114,6 @@ class WOOCCM_Fields_i18n {
|
|
| 114 |
}
|
| 115 |
}
|
| 116 |
|
| 117 |
-
|
| 118 |
-
|
| 119 |
public function i18n( $string ) {
|
| 120 |
|
| 121 |
if ( function_exists( 'icl_t' ) ) {
|
|
@@ -127,7 +125,6 @@ class WOOCCM_Fields_i18n {
|
|
| 127 |
return esc_html__( $string, 'woocommerce' );
|
| 128 |
}
|
| 129 |
|
| 130 |
-
|
| 131 |
public function translate( $value ) {
|
| 132 |
if ( ! empty( $value ) ) {
|
| 133 |
|
|
@@ -160,6 +157,10 @@ class WOOCCM_Fields_i18n {
|
|
| 160 |
$field['placeholder'] = $this->translate( $field['placeholder'] );
|
| 161 |
}
|
| 162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 163 |
return $field;
|
| 164 |
}
|
| 165 |
|
| 114 |
}
|
| 115 |
}
|
| 116 |
|
|
|
|
|
|
|
| 117 |
public function i18n( $string ) {
|
| 118 |
|
| 119 |
if ( function_exists( 'icl_t' ) ) {
|
| 125 |
return esc_html__( $string, 'woocommerce' );
|
| 126 |
}
|
| 127 |
|
|
|
|
| 128 |
public function translate( $value ) {
|
| 129 |
if ( ! empty( $value ) ) {
|
| 130 |
|
| 157 |
$field['placeholder'] = $this->translate( $field['placeholder'] );
|
| 158 |
}
|
| 159 |
|
| 160 |
+
if ( ! empty( $field['conditional_parent_value'] ) ) {
|
| 161 |
+
$field['conditional_parent_value'] = $this->translate( $field['conditional_parent_value'] );
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
return $field;
|
| 165 |
}
|
| 166 |
|
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.2.
|
| 9 |
WC requires at least: 3.1.0
|
| 10 |
WC tested up to: 6.8
|
| 11 |
License: GPLv3
|
|
@@ -149,6 +149,10 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
| 149 |
|
| 150 |
== Changelog ==
|
| 151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
= 6.2.3
|
| 153 |
* Fix. PHP erros
|
| 154 |
|
| 5 |
Requires at least: 4.9
|
| 6 |
Tested up to: 6.0.1
|
| 7 |
Requires PHP: 5.6
|
| 8 |
+
Stable tag: 6.2.4
|
| 9 |
WC requires at least: 3.1.0
|
| 10 |
WC tested up to: 6.8
|
| 11 |
License: GPLv3
|
| 149 |
|
| 150 |
== Changelog ==
|
| 151 |
|
| 152 |
+
= 6.2.4
|
| 153 |
+
* Fix. WPML compatibility
|
| 154 |
+
* Fix. Polylang compatibility
|
| 155 |
+
|
| 156 |
= 6.2.3
|
| 157 |
* Fix. PHP erros
|
| 158 |
|
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.2.
|
| 8 |
* Author: QuadLayers
|
| 9 |
* Author URI: https://quadlayers.com
|
| 10 |
* License: GPLv3
|
|
@@ -17,7 +17,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 17 |
}
|
| 18 |
|
| 19 |
define( 'WOOCCM_PLUGIN_NAME', 'Checkout Fields Manager for WooCommerce' );
|
| 20 |
-
define( 'WOOCCM_PLUGIN_VERSION', '6.2.
|
| 21 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|
| 22 |
define( 'WOOCCM_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
| 23 |
define( 'WOOCCM_PLUGIN_BASENAME', plugin_basename( __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.2.4
|
| 8 |
* Author: QuadLayers
|
| 9 |
* Author URI: https://quadlayers.com
|
| 10 |
* License: GPLv3
|
| 17 |
}
|
| 18 |
|
| 19 |
define( 'WOOCCM_PLUGIN_NAME', 'Checkout Fields Manager for WooCommerce' );
|
| 20 |
+
define( 'WOOCCM_PLUGIN_VERSION', '6.2.4' );
|
| 21 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|
| 22 |
define( 'WOOCCM_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
| 23 |
define( 'WOOCCM_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
