Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spigotdesign/42caf3fd402e0d78a9b520c924766a0f to your computer and use it in GitHub Desktop.
Save spigotdesign/42caf3fd402e0d78a9b520c924766a0f to your computer and use it in GitHub Desktop.
Change default state on WooCommerce checkout state dropdown
/**
* Change the default state on the checkout page
*/
add_filter( 'default_checkout_billing_country', 'change_default_checkout_country' );
add_filter( 'default_checkout_billing_state', 'change_default_checkout_state' );
function change_default_checkout_state() {
return 'XX'; // state code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment