This functionality is not support by WooCommerce settings, you have to take their hook filter to add it.
Go to your theme folder and open file
Let 's say if you want to add Currency is VND and symbol is đ then you can add the code like this to functions.php
PHP Code:
add_filter( 'woocommerce_currencies', 'add_vnd_currency' );
function add_vnd_currency( $currencies ) {
$currencies['VND'] = __( 'VND', 'woocommerce' );
return $currencies;
}
add_filter('woocommerce_currency_symbol', 'add_vnd_currency_symbol', 10, 2);
function add_vnd_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'VND': $currency_symbol = 'đ'; break;
}
return $currency_symbol;
}
Refresh your WooCommerce admin then you should see new currency is VND
Bookmarks