Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aadityajs/8236130 to your computer and use it in GitHub Desktop.
Save aadityajs/8236130 to your computer and use it in GitHub Desktop.
WooCommerce - Set default state/country for checkout
<?php
/**
* Manipulate default state and countries
*
* As always, code goes in your theme functions.php file
*/
add_filter( 'default_checkout_country', 'change_default_checkout_country' );
add_filter( 'default_checkout_state', 'change_default_checkout_state' );
function change_default_checkout_country() {
return 'XX'; // country code
}
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