Magento: Showing Store Selector / Switcher in header and footer

Here, I will show you how to show the store selector (store switcher) in header. By default, the store selector is present in footer. Create a new phtml file (template/page/switch/stores-top.phtml) and write the following code in it :- <?php if(count($this->getGroups())>1): ?> <div class="language-switcher" style="margin-left:15px"> <label for="select-store"><?php echo $this->__('Select Store') ?>: </label> <select id="select-store" onchange="location.href=this.value"> <?php … Read more

Magento: Show Currency Selector in header

Here, I will show you how you can change the location of currency selector to header in Magento. I suppose that you have already enabled/setup Multiple Currency in your Magento shop. If not then here is how to do it:- Magento: Setup multiple currency shop By default, the currency selector is displayed in the left … Read more