Answer the question
In order to leave comments, you need to log in
How to change the name of the field "Region / district"?
Hello.
Can you please tell me how can I change the text "Province / District" on the checkout page to "City"?
Answer the question
In order to leave comments, you need to log in
Found a solution
add_filter( 'woocommerce_default_address_fields' , 'custom_override_default_address_fields' );
function custom_override_default_address_fields( $address_fields ) {
$address_fields['state']['label'] = 'Город';
return $address_fields;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question