Code-Snippets-Functions/Execute a function on a child site/WooCommerce/rename-state-field-label-on-checkout.txt

6 lines
202 B
Text

add_filter( 'woocommerce_default_address_fields' , 'wc_rename_state_province', 9999 );
function wc_rename_state_province( $fields ) {
$fields['state']['label'] = 'Province';
return $fields;
}