Skip to content

Ansyori's Blog Posts

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

How to Speed up Magento

edit your http://yourmagentourl/.httaccess file ############################################ ## enable apache served files compression ## http://developer.yahoo.com/performance/rules.html#gzip # Insert filter SetOutputFilter DEFLATE # Netscape 4.x has some problems… BrowserMatch…

Continue reading How to Speed up Magento

Leave a Comment