WooCommerce - Changing the currency sign of UAE Dirham
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_currency_symbol', 'wc_change_uae_currency_symbol', 10, 2 ); | |
function wc_change_uae_currency_symbol( $currency_symbol, $currency ) { | |
switch ( $currency ) { | |
case 'AED': | |
$currency_symbol = 'AED'; | |
break; | |
} | |
return $currency_symbol; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Guys, Hope you good. Yar I want to change the symbol to AED but its not working in my child theme function.php file ...i copied the same code and paste it in the last bottom