Skip to content

Instantly share code, notes, and snippets.

@stephangriesel
Created October 11, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephangriesel/a779577f3baf1db68afe to your computer and use it in GitHub Desktop.
Save stephangriesel/a779577f3baf1db68afe to your computer and use it in GitHub Desktop.
// 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