Skip to content

Instantly share code, notes, and snippets.

@hemusyl
Forked from mikejolley/gist:1565309
Last active August 29, 2015 14:26
Show Gist options
  • Save hemusyl/b46781831d6d7d05687a to your computer and use it in GitHub Desktop.
Save hemusyl/b46781831d6d7d05687a 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