Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bobwol/3961422b9acf9fedfa79657fbf102ce4 to your computer and use it in GitHub Desktop.

Select an option

Save bobwol/3961422b9acf9fedfa79657fbf102ce4 to your computer and use it in GitHub Desktop.
[General Snippets] Rename a country in WooCommerce
/**
* Rename a country
*/
add_filter( 'woocommerce_countries', 'rename_ireland' );
function rename_ireland( $countries ) {
$countries['IE'] = 'Ireland';
return $countries;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment