Created
July 10, 2014 23:00
-
-
Save bryceadams/0fe1144b34951d7bb654 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
/* | |
* Make State Field Required | |
*/ | |
add_filter( 'woocommerce_get_country_locale', 'wcs_custom_checkout_locale' ); | |
function wcs_custom_checkout_locale( $locale ) { | |
$locale['GB']['state']['required'] = true; | |
return $locale; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment