Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wbcomdev/17580892aa37ce0e590441e853189656 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/17580892aa37ce0e590441e853189656 to your computer and use it in GitHub Desktop.
/**
* Change the default country on the checkout page.
*/
function wb_change_default_checkout_country() {
// Enter the country code here.
return 'XX';
}
/**
* Change the default state on the checkout page.
*/
function wb_change_default_checkout_state() {
// Enter the state code here.
return 'XX';
}
add_filter( 'default_checkout_billing_country', 'wb_change_default_checkout_country' );
add_filter( 'default_checkout_billing_state', 'wb_change_default_checkout_state' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment