Question

I need to move arabic currency name "QAR 149.00" from left to "149.00 QAR" in my Magento 1.9.2.4. Have tried several techniques but none working.

Urgent response is highly appreciated.

Was it helpful?

Solution

Navigate to /lib/Zend/Locale/Data folder .

Select the xml language file you need, for example it will be the ar.xml for Arabic.

Locate this part of code:

<currencyFormat>
<pattern>¤ #,##0.00</pattern>
</currencyFormat>

.

Change the position of the queer element ¤ from:

<pattern>¤ #,##0.00</pattern>

to:

<pattern>#,##0.00 ¤</pattern>

at end clear your cache

OTHER TIPS

Enable translation inline in system / configuration / developer and then go to frontend and edit the text. This will allow you to move the sign for currency.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top