Skip to content

Instantly share code, notes, and snippets.

@jorpdesigns
Created July 15, 2021 12:18
Show Gist options
  • Save jorpdesigns/3322c5aae0d6043bb2bac1e15aa9cb9d to your computer and use it in GitHub Desktop.
Save jorpdesigns/3322c5aae0d6043bb2bac1e15aa9cb9d to your computer and use it in GitHub Desktop.
Snippet to change default billing country on WooCommerce
<?php
add_filter( 'default_checkout_billing_country', 'change_default_checkout_country' );
function change_default_checkout_country() {
return 'GB';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment