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 |
ThornedRose
commented
Oct 13, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment