Skip to content

Instantly share code, notes, and snippets.

@stephangriesel
Created October 7, 2015 18:45
Show Gist options
  • Save stephangriesel/a3200a022953f722aeea to your computer and use it in GitHub Desktop.
Save stephangriesel/a3200a022953f722aeea to your computer and use it in GitHub Desktop.
/* Custom Currency */
add_filter( 'woocommerce_currencies', 'add_my_currency' );
function add_my_currency( $currencies ) {
$currencies['Norwegian Kroner'] = __( 'NOK', 'woocommerce' );
return $currencies;
}
add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2);
function add_my_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'NOK': $currency_symbol = 'NOK'; break;
}
return $currency_symbol;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment