How to change currency symbol in Magento?

How to change currency symbol in Magento?

March 24, 2012 Some day before, I got a task to change the currency symbol for New Zealand. After some research, i got the solution. Now I am putting the solution here for reference: I had to change the currency symbol of New Zeland Dollar to NZ$. By default, the currency symbol for New Zeland Dollar is $. For this, you need to edit lib/Zend/Locale/Data/en_NZ.xml If you are confuse how I can choose this xml file, So reason behind is that my locale setting is set to English (New Zeland). You can check you locale setting from Admin Panel –> System –> Configuration –> GENERAL –> General –> Locale options –> Locale NOW - Open lib/Zend/Locale/Data/en_NZ.xml Find the following code : <currency type="NZD"> <symbol>$</symbol> </currency> Just change $ to NZ$, so it will look like <currency type="NZD"> <symbol>NZ$</symbol> </currency> upload the file and its almost done. Now you need to clear you cache which you can do from Admin -> Setting -> Cache Management If you have any question you can contact me here

Related Posts

from my blog


How To Reset Admin Password in Magento

January 20, 2017

As an ecommerce website developer or magento website developer, sometime we  get the a situation when we forget the magento website admin access detail. To reset the password of any...

How to show all attribute after layered navigation filter in Magento

April 10, 2015

Magento Layered Navigation is really good for filter the product but problem is that, if we select any attribute like color or price all other attribute hide which are not...

How to fix layered navigation filer URL in Magento?

April 2, 2015

Magento is really good eCommerce CMS in terms of functionality. Layered Navigation is really good feature of Magento to filter the product in frontend side. Only problem with the layered navigation filter...