WooCommerce: Set Default Billing State / Country @ Checkout
This is a simple PGP snippet that I successfully used on a bunch of websites in order to set the default Billing country or state. This is a great way to save the user some time during checkout (and therefore increase your conversion rate) in case you almost exclusively sell to customers located in a given country or state. Nothing else to say, just… enjoy!
WooCommerce: set the default billing country on the checkout
PHP snippet: Set Default Billing Country or State @ WooCommerce Checkout Page
/**
* @snippet Set Default Billing Country @ WooCommerce Checkout Page
* @how-to Get CustomizeWoo.com FREE
* @source https://businessbloomer.com/?p=601
* @author Rodolfo Melogli
* @compatible Woo 3.5.4
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/
// Example 1: default state to OREGON
add_filter( 'default_checkout_billing_state', 'bbloomer_change_default_checkout_state' );
function bbloomer_change_default_checkout_state() {
return 'OR'; // state code
}
// Example 2: default country to United States
add_filter( 'default_checkout_billing_country', 'bbloomer_change_default_checkout_country' );
function bbloomer_change_default_checkout_country() {
return 'US';
}
Please let me know in the comments if everything went as expected. I would be happy to revise the snippet if you report otherwise (please provide screenshots). I have tested this code with Storefront theme, the WooCommerce version listed above and a WordPress-friendly hosting.
If you think this code saved you time & money, feel free to join 17,000+ WooCommerce Weekly subscribers for blog post updates and 250+ Business Bloomer supporters for 365 days of WooCommerce benefits. Thank you in advance!
Need Help with WooCommerce?
Check out these free video tutorials. You can learn how to customize WooCommerce without unnecessary plugins, how to properly configure the WooCommerce plugin settings and even how to master WooCommerce troubleshooting in case of a bug!
Rodolfo Melogli
Business Bloomer Founder
Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza.
25 thoughts on “WooCommerce: Set Default Billing State / Country @ Checkout”
Kris
Can this snippet be generalized to set the default country when customers add new shipping or billing addresses? I have a plug-in that allows a customer to have multiple shipping addresses for WooCommerce. Whenever a customer creates a new address, I’d like to have the form default to the US. Is this easily done (assuming the plug-in is using the usual WooCommerce tables)?
when im using this, Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘change_default_checkout_state’ not found or invalid function name in C:\xampp\htdocs\wordpress\wp-includes\class-wp-hook.php on line 289 , i set this filter in checkout page in plugin. i create plugin for override function woocommerce
function __construct()
{
//filter to empty checkout country and checkout state
add_filter('default_checkout_billing_country', 'change_default_checkout_country');
add_filter('default_checkout_billing_state', 'change_default_checkout_state');
}
for initiate filter in plugin file checkout
this is for function
function change_default_checkout_country()
{
return null;
}
/*
Add Destination's ID to POST parameter
@filter default_checkout_billing_state
@return mixed
*/
function change_default_checkout_state()
{
return null;
}
Hi Chris, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Sorry but just can’t get this to work at all. We have a website where the default country is Sweden, but we need to be able to set the checkout country to another. I used this code ‘as is’ to try and force it to the US, as an example, but the default country is still Sweden. Any ideas?
i can set default country if i not go to page chechout.
Example: i set default country “US” on page cart, and i get billing country on page cart, i not change
function default_checkout_city(){
return 'x'; // state code
}//add_filter( 'woocommerce_countries_base_city', 'default_checkout_city' );
add_filter( 'woocommerce_countries_base_city' , 'set_woocommerce_countries_base_city' );
function set_woocommerce_countries_base_city() {
// Replace with your store town/city
return 'x';
}
Hey there Jhonson, thanks for your comment! See, the city field behaves differently from the state ad country ones: it’s an input text field and not a select box. Today I felt generous though – here’s my brand new post which gives you the solution: https://businessbloomer.com/woocommerce-set-default-city-values-checkout 🙂 Thanks so much!
Hey Satish, thanks for your comment. I think you have something wrong in the WooCommerce settings 🙂 Can you send me a screenshot of your WooCommerce/Settings/General page? Cheers. ~R
Questions? Feedback? Support? Leave your Comment Now! _____
If you are writing code, please wrap it between shortcodes: [php]code_here[/php]. Failure to complying with this (as well as going off topic, not writing in English, etc.) will result in comment deletion. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining BloomerArmada to get blog comment reply priority, ask me 1-to-1 WooCommerce questions and enjoy many more perks. Thank you :)
With 100,000 (and growing) monthly organic sessions, Business Bloomer is the most consistent, most active and most complete WooCommerce development/customization blog.
Of course this website itself uses the WooCommerce plugin, the Storefront theme and runs on a WooCommerce-friendly hosting.
Can this snippet be generalized to set the default country when customers add new shipping or billing addresses? I have a plug-in that allows a customer to have multiple shipping addresses for WooCommerce. Whenever a customer creates a new address, I’d like to have the form default to the US. Is this easily done (assuming the plug-in is using the usual WooCommerce tables)?
Thanks!
Yes, but pretty much it depends on how the plugin is coded. Ask their support team
when im using this, Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘change_default_checkout_state’ not found or invalid function name in C:\xampp\htdocs\wordpress\wp-includes\class-wp-hook.php on line 289 , i set this filter in checkout page in plugin. i create plugin for override function woocommerce
for initiate filter in plugin file checkout
this is for function
Thanks
Thanks, works for me, just what I was looking for.
Great!
Hello, that dont work for me, i use this code directly on function.php ang default country dont change, can i have help ?
What code did you use?
Hello, can we set default state for countrys that woocomerce doesnt have stored state codes like Greece?
Hi Chris, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Sorry but just can’t get this to work at all. We have a website where the default country is Sweden, but we need to be able to set the checkout country to another. I used this code ‘as is’ to try and force it to the US, as an example, but the default country is still Sweden. Any ideas?
Hey James, thanks for your comment! Maybe you have geolocation enabled from the WooCommerce settings?
i can set default country if i not go to page chechout.
Example: i set default country “US” on page cart, and i get billing country on page cart, i not change
Hello Cheng, thanks for your comment. Unfortunately I don’t understand it fully, so maybe you could provide a screenshot? Thank you
Hi, do you how to set default city?
It’s not working for me. Tried
Hey there Jhonson, thanks for your comment! See, the city field behaves differently from the state ad country ones: it’s an input text field and not a select box. Today I felt generous though – here’s my brand new post which gives you the solution: https://businessbloomer.com/woocommerce-set-default-city-values-checkout 🙂 Thanks so much!
how to remove the default selected country i need to show ‘select country’, thanks
Hey Satish, thanks for your comment. I think you have something wrong in the WooCommerce settings 🙂 Can you send me a screenshot of your WooCommerce/Settings/General page? Cheers. ~R
thanks Rodolfo,
I found a solution by in this way,
add_filter( ‘default_checkout_country’, ‘change_default_checkout_country’ );
function change_default_checkout_country() {
return ”;
}
Awesome 🙂
This is a great snippet, thanks.
Thanks so much for your feedback Debbie!
where about do you insert this code?
Hello Doug, you can do so in your active theme’s function.php file, or use Code Snippets free plugin. Hope this helps!