Snippets

Dan Bochichio Woocommerce Default Location Checkout

Created by Dan Bochichio last modified Dan NA
/**
* 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
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.