Skip to content

Instantly share code, notes, and snippets.

@NiklasHogefjord
Last active August 29, 2015 14:17
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 NiklasHogefjord/c0a1f25abcb249b8979a to your computer and use it in GitHub Desktop.
Save NiklasHogefjord/c0a1f25abcb249b8979a to your computer and use it in GitHub Desktop.
WooCommerce - custom currency symbol
add_filter('woocommerce_currency_symbol', 'my_custom_currency_symbol', 10, 2) ;
function my_custom_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
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