How to add "Home" to the left side of the menu bar in OpenCart?

How to add a link to the home page - "Home" - on the left side of the menu bar in OpenCart?

thanks

+4
source share
3 answers

change catalog/view/theme/<YOUR_THEME>/template/common/header.tpl

Search:

 <div id="menu"> <ul> 

Add below:

  <li><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a></li> 
+9
source

Even you can add your custom menus to the top navigation bar.

change directory /view/theme//template/common/header.tpl

Search:

 <div id="menu"> <ul> 

Then

 <li><a href="YOUR_LINK">Menu_Text</a></li> 

And also you can add a predefined menu, for example, "Information", "Customer Support", etc.

Information menu

  <?php foreach ($informations as $information) { ?> <li> <a href="<?php echo $information['href']; ?>"> <?php echo $information['title']; ?></a> </li> <?php } ?> 

Service Menu

  <li><?php echo $text_service; ?> <ul> <li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li> <li><a href="<?php echo $return; ?>"><?php echo $text_return; ?></a></li> <li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li> </ul> </li> 

Extra menu

 <li><?php echo $text_extra; ?> <ul> <li><a href="<?php echo $manufacturer; ?>"><?php echo $text_manufacturer; ?></a></li> <li><a href="<?php echo $voucher; ?>"><?php echo $text_voucher; ?></a></li> <li><a href="<?php echo $affiliate; ?>"><?php echo $text_affiliate; ?></a></li> <li><a href="<?php echo $special; ?>"><?php echo $text_special; ?></a></li> </ul> </li> 

Account Menu

 <li><?php echo $text_account; ?> <ul> <li><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a></li> <li><a href="<?php echo $order; ?>"><?php echo $text_order; ?></a></li> <li><a href="<?php echo $wishlist; ?>"><?php echo $text_wishlist; ?></a></li> <li><a href="<?php echo $newsletter; ?>"><?php echo $text_newsletter; ?></a></li> </ul> </li> 

The above predefined menus only work in the footer area, to add this to the top navigation, you need to make some changes to header.php

Follow this link

how to add info links to navigation menu in opencart?

+2
source

Open basket
Version 2.0.3.1
edit catalog / view / theme // template / common / header.tpl
To find
<ul class="nav navbar-nav">
And then according to the above method <li><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a></li> <li><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a></li>
running on the track.

0
source

All Articles