How can I change currency symbol
-
I am trying like this and it is not working.
add_filter( ‘rpress_currency_symbol’, $symbol, $currency );
function rpress_currency_symbol( $symbol, $currency ) {
switch( $currency ) {
case ‘UAE Dirham’: $symbol = ‘AED’; break;
}
return $symbol;
}
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How can I change currency symbol’ is closed to new replies.