Is there a way to add a HOME button to the main horizonal nav?
I tried it using the categories along with the mod that takes out product count but that just left a space below the cat/product page that says HOME.
I tried it using the categories along with the mod that takes out product count but that just left a space below the cat/product page that says HOME.
http://www.vapingxtreme.com
An Electronic Cigarette and Vaping Store
Take a break......Vape!
You have to edit catalog/theme/yourtheme/template/common/header.tpl and search for:
Replace with:
Code: Select all
<div id="menu">
<ul>
<?php foreach ($categories as $category) { ?>
<li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php if ($category['children']) { ?>
<div>
<?php for ($i = 0; $i < count($category['children']);) { ?>
<ul>
<?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
<?php for (; $i < $j; $i++) { ?>
<?php if (isset($category['children'][$i])) { ?>
<li><a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a></li>
<?php } ?>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
</li>
<?php } ?>
</ul>
</div>
Code: Select all
<div id="menu">
<ul>
<li><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a></li>
<?php foreach ($categories as $category) { ?>
<li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php if ($category['children']) { ?>
<div>
<?php for ($i = 0; $i < count($category['children']);) { ?>
<ul>
<?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
<?php for (; $i < $j; $i++) { ?>
<?php if (isset($category['children'][$i])) { ?>
<li><a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a></li>
<?php } ?>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
</li>
<?php } ?>
</ul>
</div>
dropbox.com - 2GB free online storage.
Thanks George.
http://www.vapingxtreme.com
An Electronic Cigarette and Vaping Store
Take a break......Vape!
Worked absolutly great!
Thanks again.
Thanks again.
http://www.vapingxtreme.com
An Electronic Cigarette and Vaping Store
Take a break......Vape!
Who is online
Users browsing this forum: No registered users and 52 guests