Change Moroccan Dirham symbol with ‘Dhs’ text?
-
Hi to everyone!
I see a function at this forum for change a currency symbol, but it doesn’t work with Dirham symbol (?.?.) . What are the changes for make this working? I try diferent options, without result.
add_filter(‘woocommerce_currency_symbol’, ‘my_currency_symbol’, 10, 2);
function my_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case ‘AED’: $currency_symbol = ‘AED’;
break;
}
return $currency_symbol;
}
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Change Moroccan Dirham symbol with ‘Dhs’ text?’ is closed to new replies.