Skip to content

Instantly share code, notes, and snippets.

@jentanbernardus
Forked from mikejolley/gist:1565309
Created October 22, 2012 10:04
Show Gist options
  • Save jentanbernardus/3930737 to your computer and use it in GitHub Desktop.
Save jentanbernardus/3930737 to your computer and use it in GitHub Desktop.
WooCommerce - Filters to add custom currencies and symbols
add_filter( 'woocommerce_currencies', 'add_my_currency' );
function add_my_currency( $currencies ) {
$currencies['ABC'] = __( 'Currency name', '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 'ABC': $currency_symbol = '$'; break;
}
return $currency_symbol;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment