Skip to content

Instantly share code, notes, and snippets.

@Nils-Fredrik
Forked from agusmu/functions.php
Last active August 29, 2015 14:22
Show Gist options
  • Save Nils-Fredrik/ff8cd48e443c31294c26 to your computer and use it in GitHub Desktop.
Save Nils-Fredrik/ff8cd48e443c31294c26 to your computer and use it in GitHub Desktop.
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'DKK' : $currency_symbol = 'DKK'; break;
case 'NOK' : $currency_symbol = 'NOK'; break;
case 'SEK' : $currency_symbol = 'SEK'; break;
}
return $currency_symbol;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment