You must be logged in to see replies to this topic. Click here to login or register
WooCommerce Multi Currency – Currency Switcher plugins
This one my site default currency settings.
I want to use other countries’ currencies.
If use WooCommerce Multi Currency-Currency Switcher plugin,
Can I use numbers and currency symbols?
Or, automatically calculated Korean currency be display?
Thanks
/**
* Change a currency symbol
*/
add_filter(‘woocommerce_currency_symbol’, ‘change_existing_currency_symbol’, 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case ‘KRW’: $currency_symbol = ‘원’; break;
}
return $currency_symbol;
}
You must be logged in to see replies to this topic. Click here to login or register