[ad_1]
Try this in functions file of your child theme only. Below any code
add_filter( 'woocommerce_default_address_fields' , 'your_rename_city_province', 9999 );
function your_rename_city_province( $fields ) {
$fields['city']['label'] = 'Ciudad'; // Change Ciudad to whatever you want it to be
return $fields;
}
Welcome. If that solved your issue then please click “Resolved” so support can close this out.
