Created
October 11, 2015 14:21
-
-
Save stephangriesel/a779577f3baf1db68afe to your computer and use it in GitHub Desktop.
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
// Rename 'United Kingdom' to 'UK Mainland' | |
add_filter( 'woocommerce_countries', 'rename_united_kingdom' ); | |
function rename_united_kingdom( $countries ) { | |
$countries['GB'] = 'UK Mainland'; | |
return $countries; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment