E
E
Elizaveta Krasova2020-04-19 16:35:05
WooCommerce
Elizaveta Krasova, 2020-04-19 16:35:05

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"?
5e9c52fb09c66231314605.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Elizaveta Krasova, 2020-04-19
@ElizavetaKrasova

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 question

Ask a Question

731 491 924 answers to any question