cancel
Showing results for 
Search instead for 
Did you mean: 

£ currency not showing

£ currency not showing

Hi, the £ symbol is not showing top right when you choose currencies. I have setup everything in the backend. Pound, Euro and Dollars are enabled, but only Euro & Dollars show. Dollars is the base currency. My site is 

 

http://www.mygreenjade.thewhitehawk.co.uk/

1 REPLY 1

Re: £ currency not showing

Hello gavin,

You can check below code

<?php if($this->getCurrencyCount()>1): ?>
<div class="currency-switcher">
    <label for="select-currency"><?php echo $this->__('Your Currency:') ?></label>
    <select id="select-currency" name="currency" title="<?php echo $this->__('Your Currency') ?>" onchange="setLocation(this.value)">
        <?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 $_name ?> - <?php echo $_code ?>
        </option>
    <?php endforeach; ?>
    </select>
</div>
<?php endif; ?>