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/6d7b44d5ba9d801c6f9a796a3edf79cb to your computer and use it in GitHub Desktop.
Save spigotdesign/6d7b44d5ba9d801c6f9a796a3edf79cb to your computer and use it in GitHub Desktop.
Change the default country for WooCommerce checkout shipping
/**
* Change the default country on the checkout page
*/
add_filter( 'default_checkout_billing_country', 'change_default_checkout_country' );
function change_default_checkout_country() {
return 'US'; // Put Country code here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment