cancel
Showing results for 
Search instead for 
Did you mean: 

Query regarding magento header and top links

Query regarding magento header and top links

Hi i am using magento 1.9 with ultimo responsive theme. on my homepage top header i want to display horizontal bar just like the site image. and display sign up promotion link, contact us link and currency switcher. Please help me to edit in header.phtml file. also currency switcher not working. and not least i want to add icons on top links of wishlist, login and cart button.

So please help me to do it.

 

thanks

 

top links

1 REPLY 1

Re: Query regarding magento header and top links

Follow the below steps to gain your solution.

Step 1:-
Goto admin >> System >> Configuration >> General >> Currency Setup Select your multiple currency

Step 2:-
System >> Manage Currency >> Rates , Import your currency after save Currency Rates

Please open header.phtml file from the below path and follow the further steps stated below:
app\design\frontend\mypackage\mytheme\template\page\html\header.phtml

Step 3:- Please add below code for currency_switcher

<?php echo $this->getChildHtml('currency_switcher') ?>


Step 4:- Add this code for toplinks signup

<?php echo $this->getChildHtml('topLinks') ?>.


Step 5:- Add this code for Contact Us link

<a href="<?php echo Mage::getBaseUrl().'contacts';?>" ><?php echo $this->__('Contact Us'); ?></a> 

 

Hope this helps you!

Query solved? Accept as Solution.Thanks
Eric Baily