Skip to content

Day: August 22, 2013

Magento: Change Currency Thousand Separator from Comma to Dot

for example change indonesian locale currecy format edit file: lib/Zend/Locale/Data/id.xml <currencyFormats> <currencyFormatLength> <currencyFormat> <pattern>¤#.##0,00</pattern> </currencyFormat> </currencyFormatLength> </currencyFormats> Change to <currencyFormats> <currencyFormatLength> <currencyFormat> <pattern>¤#,##0.00</pattern> </currencyFormat> </currencyFormatLength>…

Continue reading Magento: Change Currency Thousand Separator from Comma to Dot

Leave a Comment