在magento的货币符号后添加空格

时间:2012-07-30 10:52:52

标签: zend-framework magento magento-1.7

如何在magento1.7中使用货币符号后添加空格。

我已将默认货币更改为玻利维亚玻利维亚诺。它的价值是BOB。

在产品列表页面中,它显示为VEB12.98,我需要像VEB。 12.98

3 个答案:

答案 0 :(得分:5)

从1.7开始,您可以直接在管理区域中更改/编辑货币符号:

系统>管理货币>符号

答案 1 :(得分:0)

在语言文件 lib / Zend / Locale / Data / en.xml 中编辑 要么 lib / Zend / Locale / Data / en_US.xml 因此接近符号¤。

<currencyFormat> <pattern>¤ #,##0.00;(¤ #,##0.00)</pattern> </currencyFormat>

答案 2 :(得分:-1)

如果您使用的是Magento社区版&lt; 1.7,你可以自己添加空间。

$_price = Mage::helper('core')->currency($_product->getPrice());

从上面的代码中获取价格html,然后你可以使用php函数插入点和空格:

$_price = str_replace('VEB', 'VEB. ', $_price);

如果您已经使用过Magento 1.7,那么来自Drew Hunter的回答可能会对您有所帮助。