Support shipping order fields for the VietNam standard

This commit is contained in:
Long
2019-03-24 16:21:24 +07:00
committed by Dat Hoang
parent 68b9b75adf
commit 6707c735b5
+24 -12
View File
@@ -1,48 +1,60 @@
.woocommerce-billing-fields__field-wrapper { .woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
#billing_first_name_field { #billing_first_name_field,
#shipping_first_name_field {
order: 1; order: 1;
} }
#billing_last_name_field { #billing_last_name_field,
#shipping_last_name_field {
order: 2; order: 2;
} }
#billing_company_field { #billing_company_field,
#shipping_company_field {
order: 3; order: 3;
} }
#billing_country_field { #billing_country_field,
#shipping_country_field {
order: 4; order: 4;
} }
#billing_state_field { #billing_state_field,
#shipping_state_field {
order: 5; order: 5;
} }
#billing_city_field { #billing_city_field,
#shipping_city_field {
order: 6; order: 6;
} }
#billing_address_1_field { #billing_address_1_field,
#shipping_address_1_field {
order: 7; order: 7;
} }
#billing_address_2_field { #billing_address_2_field,
#shipping_address_2_field {
order: 8; order: 8;
} }
#billing_postcode_field { #billing_postcode_field,
#shipping_postcode_field {
order: 9; order: 9;
} }
#billing_phone_field { #billing_phone_field,
#shipping_phone_field {
order: 10; order: 10;
} }
#billing_email_field { #billing_email_field,
#shipping_email_field {
order: 11; order: 11;
} }