PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Change currency symbol (د.إ) to custom English wording (AED)

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

https://fclt-e.com/shop

I used the custom money signs (د.إ AED, ر.ع. OMR, ر.س SAR) although it is still not working. Did I understand the usage of this correctly?

I would like to change the currency symbol to custom English wording so customers will see instantly the country currency they chose in English format.

Thank you in advance.

Hello

to change the currency symbol depending on the current language - you need customization of the code

Read  this - https://currency-switcher.com/how-to-manipulate-with-currencies-rates/

An example:

add_filter('woocs_currency_data_manipulation', 'woocs_currency_data_manipulation', 1, 1);

function woocs_currency_data_manipulation($currencies)
{

$lang = 'en'; // get  current lang ICL_LANGUAGE_CODE; OR get_locale();
foreach ($currencies as $key => $value)
{
if ($lang == 'en' AND  $key =='USD' )
{
$currencies[$key]['symbol'] = 'USD';
}
}
return $currencies;
}

Means adding the code into file functions.php, the code above is an example and you should set params by your site business logic