Last active
September 16, 2024 08:07
-
-
Save woogists/796d3b26325c84a726b5bc1b1b3dd059 to your computer and use it in GitHub Desktop.
[Frontend Snippets] Change the default country on the checkout (non-existing users only)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Change the default country on the checkout for non-existing users only | |
*/ | |
add_filter( 'default_checkout_billing_country', 'change_default_checkout_country', 10, 1 ); | |
function change_default_checkout_country( $country ) { | |
// If the user already exists, don't override country | |
if ( WC()->customer->get_is_paying_customer() ) { | |
return $country; | |
} | |
return 'DE'; // Override default to Germany (an example) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PHP Fatal error: Uncaught Error: Call to a member function get_is_paying_customer() on null
Use with caution - make sure the customer exists first