如何在Virtuemar中显示不同货币的2个价格

时间:2012-01-11 21:12:38

标签: virtuemart

我需要在flypage上显示不同货币的2个价格,但到目前为止我还没有找到它的配方。谁能帮助我?

2 个答案:

答案 0 :(得分:0)

您可以通过添加新的输入字段来完成此操作。

答案 1 :(得分:0)

要做到这一点,需要一点点编码......

1 - 编辑模板文件夹中的文件default_showprices.php( /templates/YOUR_TEMPLATE/html/com_virtuemart/productdetails/default_showprices.php

2 - 获取currency_id(来自virtuemart admin)。例如,我使用美元货币ID:144。

3 - 将此代码放在文件的任何一行:

echo '<b>US$: '.$this->currency->roundForDisplay($this->product->prices['salesPrice'],144,1,false).'</b>';

此代码将打印转换为美元的价格。