Change the currency symbol from '$' to 'USD' in Woocommerce
-
Hello Guys,
What a Amazing Plugin you have but the thing is i want to change the Symbol of $ to USD. As i have already Hook in functions.php provided by woocommerce author but it didn’t working when your plugin activated.
So tell me what i do now. Code is below :
// Currency Symbols
add_filter( ‘woocommerce_currency_symbol’, ‘change_currency_symbol’, 10, 2 );function change_currency_symbol( $symbols, $currency ) {
if ( ‘USD’ === $currency ) {
return ‘USD’;
}
return $symbol;
}So please help me how can i overcome from this Problem.
Thanks,
Mananhttps://www.ads-software.com/plugins/woocommerce-currency-switcher/
- The topic ‘Change the currency symbol from '$' to 'USD' in Woocommerce’ is closed to new replies.