我有两个语言商店(波兰语和英语),我允许支付三种不同的货币。问题在于显示货币符号。这取决于语言,而不是货币
示例:(我在“英语商店”视图中选择货币欧元)
(在波兰商店currency= $,language = PL)
我在哪里可以改变它,以显示符号不是以语言“说”,而是作为货币应该看起来像?
我发现了这样的情况:magento的货币符号,但这改变了全球的货币格局,而不是特定的货币模式。
发布于 2014-09-19 12:07:53
请参阅此链接
1. Go from your root folder to /lib/Zend/Locale/Data
2. Find the lenguage file. In my case es.xml
3. Look for <currencyFormat>

先于
<currencyformatlength>
<currencyformat>
<pattern>¤ #,##0.00</pattern>
</currencyformat>
</currencyformatlength>后

<currencyformatlength>
<currencyformat>
<pattern>#,##0.00 ¤</pattern>
</currencyformat>
</currencyformatlength>https://stackoverflow.com/questions/25933503
复制相似问题