Created
November 7, 2016 12:40
-
-
Save kaweski/8b50bd17aac685a4af214f05f11ea63a to your computer and use it in GitHub Desktop.
Troca o país padrão da página de checkout
This file contains hidden or 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
/** | |
* Manipulate default country | |
*/ | |
add_filter( 'default_checkout_country', 'change_default_checkout_country' ); | |
function change_default_checkout_country() { | |
return 'BR'; // country code | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment