Skip to content

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>
</currencyFormats>

Share

Be First to Comment

Leave a Reply to Anonymous Cancel reply

Your email address will not be published. Required fields are marked *