我有一个deal.phtml文件,在特定页面上加载大约20个产品。我现在有一家多店铺语言商店,我注意到在选择其他货币时价格没有转换。
只是坚持使用本地货币和符号(货币切换适用于所有其他页面,仅包含此页面的deal.phtlm文件)。这是从开始的第一个代码行:
<?php
$_helper = $this->helper('catalog/output');
?>
<?php if (($_products = $this->getProductCollection()->addAttributeToSort('position', 'desc')->addAttributeToSelect('*')) && $_collectionSize = $_products->getSize()): ?>
<?php $symbol = Mage::app()->getLocale()->currency($_code)->getSymbol();?>
知道如何包含其他货币吗?我想包括美元,欧元,英镑。
答案 0 :(得分:0)
事情就是这样:
$storeID = Mage::app()->getStore()->getStoreId();
$symbol = Mage::app()->getStore($storeID)->getCurrentCurrencyCode();