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!
PHP snippet: Set Default Billing Country or State @ WooCommerce Checkout Page
/** * @snippet Set Default Billing Country @ WooCommerce Checkout Page * @how-to businessbloomer.com/woocommerce-customization * @source https://businessbloomer.com/?p=601 * @author Rodolfo Melogli, Business Bloomer * @compatible Woo 3.5.4 * @community https://businessbloomer.com/club/ */ // 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'; }
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!