Display currency selection in header
By default, the currency selector is displayed in the left sidebar. Here, I will show you how you can show it in header. Create a new phtml file (../template/<dirname>/currency-top.phtml) and write the following code in it: <?php if($this->getCurrencyCount()>1): ?> <div class="box language-switcher" style="margin-left:15px"> <label for="select-language">Your Currency: </label> <select name="currency" onchange="changeCurrency(this)"> <?php foreach ($this->getCurrencies() as $_code => $_name): ?> <option value="<?php echo $_code ?>"<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected="selected"<?php endif; ?>> <?php echo $_name ?> - <?php echo $_code ?> </option> <?php endforeach; ?> </select> </div> <script typ...