Last active
July 2, 2020 05:20
-
-
Save rynaldos-zz/2968dd1875c86298381eb28c4cd9444d to your computer and use it in GitHub Desktop.
[WooCommerce 3.0] make NZ region compulsory in checkout page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'woocommerce_billing_fields', 'woo_filter_state_billing', 10, 1 ); | |
| add_filter( 'woocommerce_shipping_fields', 'woo_filter_state_shipping', 10, 1 ); | |
| function woo_filter_state_billing( $address_fields ) { | |
| $address_fields['billing_state']['required'] = true; | |
| return $address_fields; | |
| } | |
| function woo_filter_state_shipping( $address_fields ) { | |
| $address_fields['shipping_state']['required'] = true; | |
| return $address_fields; | |
| } | |
| //Did this help? Donate me some BTC: 1BEsm8VMkYhSFJ92cvUYwxCtsfsB2rBfiG |
//Make Region (State) required
function custom_nz_locale($locale){
$locale['NZ']['state']['required'] = true;
return $locale;
}
add_filter('woocommerce_get_country_locale', 'custom_nz_locale');
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi - just trying to apply this now (to functions.php?) - and it doesn't seem to be working. Have you made any edits to this recently to keep it current?
Need region to be compulsory for shipping calculations to work properly...
Thanks