Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active October 3, 2020 19:08
Show Gist options
  • Select an option

  • Save woogists/3d817a0d7b1572542a4ec2f290fec504 to your computer and use it in GitHub Desktop.

Select an option

Save woogists/3d817a0d7b1572542a4ec2f290fec504 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