2

我对货币 URL 有疑问。

假设我的网址是 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; 
4

0 回答 0