Version Description
Bug fix.
=
Download this release
Release Info
Developer | Emark |
Plugin | WooCommerce Checkout Manager |
Version | 3.5.7 |
Comparing to | |
See all releases |
Code changes from version 3.5.6 to 3.5.7
- readme.txt +3 -3
- woocommerce-checkout-manager.php +5 -5
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.trottyzone.com/donation/
|
|
4 |
Tags: woocommerce, checkout settings, remove fields, shipping, order, fields, checkout page, checkout field, checkout manager, required remove, woocommerce checkout manager, checkout, checkout field editor, field editor, woocommerce custom checkout options , custom checkout, checkout option, field, payment, sell, buy, pay, tax, notice, re-order, order, new field, save field, manager, options, field editor
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.6
|
7 |
-
Stable tag: 3.5.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Manages WooCommerce Checkout
|
@@ -201,7 +201,7 @@ Translations updated
|
|
201 |
Included translations - Vietnamse, Italian, European Portuguese, Brazilian Portuguese
|
202 |
Layout fixed on Order Summary Page
|
203 |
|
204 |
-
|
205 |
== Changelog ==
|
206 |
|
207 |
= 1.0 =
|
@@ -290,4 +290,4 @@ Translations updated
|
|
290 |
|
291 |
= 3.5.6 =
|
292 |
Included translations - Vietnamse, Italian, European Portuguese, Brazilian Portuguese
|
293 |
-
Layout fixed on Order Summary Page
|
4 |
Tags: woocommerce, checkout settings, remove fields, shipping, order, fields, checkout page, checkout field, checkout manager, required remove, woocommerce checkout manager, checkout, checkout field editor, field editor, woocommerce custom checkout options , custom checkout, checkout option, field, payment, sell, buy, pay, tax, notice, re-order, order, new field, save field, manager, options, field editor
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.6
|
7 |
+
Stable tag: 3.5.7
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Manages WooCommerce Checkout
|
201 |
Included translations - Vietnamse, Italian, European Portuguese, Brazilian Portuguese
|
202 |
Layout fixed on Order Summary Page
|
203 |
|
204 |
+
= 3.5.7 =
|
205 |
== Changelog ==
|
206 |
|
207 |
= 1.0 =
|
290 |
|
291 |
= 3.5.6 =
|
292 |
Included translations - Vietnamse, Italian, European Portuguese, Brazilian Portuguese
|
293 |
+
Layout fixed on Order Summary Page
|
woocommerce-checkout-manager.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: WooCommerce Checkout Manager
|
5 |
Plugin URI: http://www.trottyzone.com/product/woocommerce-checkout-manager-pro
|
6 |
Description: Manages WooCommerce Checkout fields
|
7 |
-
Version: 3.5.
|
8 |
Author: Ephrain Marchan
|
9 |
Author URI: http://www.trottyzone.com
|
10 |
License: GPLv2 or later
|
@@ -831,8 +831,8 @@ add_filter( 'woocommerce_checkout_fields' , 'custom_replace_checkout_fields2' );
|
|
831 |
|
832 |
function custom_replace_checkout_fieldsc( $fields ) {
|
833 |
$options = get_option( 'wccs_settings' );
|
834 |
-
if ( ! empty( $options['replace']['
|
835 |
-
$fields['billing']['billing_company']['label'] = ''.$options['replace']['
|
836 |
return $fields;
|
837 |
}
|
838 |
add_filter( 'woocommerce_checkout_fields' , 'custom_replace_checkout_fieldsc' );
|
@@ -896,8 +896,8 @@ add_filter( 'woocommerce_billing_fields', 'wccs_override_required_fields8', 10,
|
|
896 |
|
897 |
function custom_replace_checkout_fieldsh( $fields ) {
|
898 |
$options = get_option( 'wccs_settings' );
|
899 |
-
if ( ! empty( $options['replace']['
|
900 |
-
$fields['billing']['billing_country']['label'] = ''.$options['replace']['
|
901 |
return $fields;
|
902 |
}
|
903 |
add_filter( 'woocommerce_checkout_fields' , 'custom_replace_checkout_fieldsh' );
|
4 |
Plugin Name: WooCommerce Checkout Manager
|
5 |
Plugin URI: http://www.trottyzone.com/product/woocommerce-checkout-manager-pro
|
6 |
Description: Manages WooCommerce Checkout fields
|
7 |
+
Version: 3.5.7
|
8 |
Author: Ephrain Marchan
|
9 |
Author URI: http://www.trottyzone.com
|
10 |
License: GPLv2 or later
|
831 |
|
832 |
function custom_replace_checkout_fieldsc( $fields ) {
|
833 |
$options = get_option( 'wccs_settings' );
|
834 |
+
if ( ! empty( $options['replace']['label5'] ) )
|
835 |
+
$fields['billing']['billing_company']['label'] = ''.$options['replace']['label5'].'';
|
836 |
return $fields;
|
837 |
}
|
838 |
add_filter( 'woocommerce_checkout_fields' , 'custom_replace_checkout_fieldsc' );
|
896 |
|
897 |
function custom_replace_checkout_fieldsh( $fields ) {
|
898 |
$options = get_option( 'wccs_settings' );
|
899 |
+
if ( ! empty( $options['replace']['label2'] ) )
|
900 |
+
$fields['billing']['billing_country']['label'] = ''.$options['replace']['label2'].'';
|
901 |
return $fields;
|
902 |
}
|
903 |
add_filter( 'woocommerce_checkout_fields' , 'custom_replace_checkout_fieldsh' );
|