Here’s a super quick snippet you can use to rename the WooCommerce checkout “state” field label for both billing & shipping.
Of course you can learn by example and apply the same snippet to other checkout fields, all yopu need to change is the field ID. Enjoy!
PHP Snippet: Rename State Label @ Checkout Page
/**
* @snippet Rename State Field Label @ WooCommerce Checkout
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 3.6.4
* @community https://businessbloomer.com/club/
*/
add_filter( 'woocommerce_default_address_fields' , 'bbloomer_rename_state_province', 9999 );
function bbloomer_rename_state_province( $fields ) {
$fields['state']['label'] = 'Province';
return $fields;
}
If you want to rename other fields, just replace ‘state‘ inside the square brackets with:
- ‘country‘
- ‘first_name‘
- ‘last_name‘
- ‘company‘
- ‘address_1‘
- ‘address_2‘
- ‘city‘
- ‘postcode‘
thanks, but on load, it works. then after a second it changes to its old state
Weird, works perfectly on my Storefront theme. Can you disable your server-side and WordPress-side cache + temporarily disable all plugins but Woo and also temporarily switch your theme. Does the snippet work?
Also for me on load, it works. then after a second it changes to its old state
I think the problem is coming from address-i18n.min.js file
Ok thank you. What’s your store address country (under WooCommerce > Settings)?
Howdy, it changed the naming for me on the “Shipping” address fields but not the “Billing” address fields.
That’s weird, works for both on my dev site. Please try to see if you have other plugins / code targeting the billing fields already, and temporarily disable them all to see if my snippet actually works
Excellent. Works on The Retailer.
Just one question. In other comment you mention handling foreign characters, but I`m stumped on how to “wrap it in a __() function:”.
For example if I wanted to replace the field ‘state’ as in the example, with the Japanese character for country ε½, the obvious solution of replace ‘province’ with ‘ε½’ doesn`t work.
Could you give an example of what wrapping the would look like in this case?
Thank you.
Maybe?
Just how good are you ? !
Works perfectly. THANKγYOU.
Ahah thanks
I don’t know why and how can influence but this code is adding 2 more seconds on add to cart.
Do you have any ideas about why is happening?
Thanks
Not sure, haven’t noticed that honestly
Worked Perfectly with Astra!
Nice!
Can I add another field: customer id number to the form.
I need a new one and does not want to rename an existing one.
Thanks
https://www.businessbloomer.com/woocommerce-add-custom-checkout-field-php/
Hello Rodolfo,
i want this snippet work with multi language woocommerce , sorry i know this might be a newbie question
No worries. In order to make a string translatable you have to wrap it in a __() function: https://codex.wordpress.org/I18n_for_WordPress_Developers#Translatable_strings – hope this helps π
no longer works
Tried with a different theme and no other plugins than Woo already?
For me it works perfectly. I used the code snipets plugin and I am using the OceanWP theme.
Nice!
Hello Rodolfo!
Exactly where I was stuck after our discussion on the CustomizeWoo 2.0 course comment area… BTW, I highly recommend this course to all people who want to improve their Woocommerce skills.
Related with this snippet: it does work only for Italy, where you are from :)). If I choose Italy, the label changes in “Province”. But for other countries (eg United Kingdom or Romania), the “County” label will be there. For the United States, the label is “State”, and so on.
Please advise how to proceed for these situations. Thank you!
I FOUND MYSELF. There is a chance to use woocommerce_get_country_locale hook:
Excellent!
The snippet code is