magento设置切换货币网址

时间:2012-12-12 06:54:32

标签: magento

我的货币网址存在问题。

假设我的网址是www.example.com/by_women/?color=black 现在我想在更改货币后重定向同一页面。 这是我的代码。


<?php if($this->getCurrencyCount() > 1): ?>
    <span>Select Currency:</span>
    <select name="custom-currency-selector" id="custom-currency-selector">
    <?php foreach ($this->getCurrencies() as $_code => $_name): ?>
        <option value="<?php echo $this->getSwitchCurrencyUrl($_code)?>"
            <?php if($_code == $this->getCurrentCurrencyCode()): ?>
                selected="SELECTED"
            <?php endif; ?>>
            <?php echo $_code ?>
        </option>
    <?php endforeach; ?>
    </select>
    <?php endif; 

0 个答案:

没有答案