Page 1 of 1
Breadcrumbs
Posted: Mon Feb 11, 2013 11:38 am
by Delpfine
What do I need to do to move the breadcrumbs to the top of the category page and the product detail page? Thanks.
Re: Breadcrumbs
Posted: Mon Feb 11, 2013 2:20 pm
by Brent
Find this code at the bottom of category.tpl.
Code: Select all
<div class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
<?php } ?>
</div>
move the complete block to the top. Try it at about line 36. You will have to make sure it works in that spot.
Re: Breadcrumbs
Posted: Mon Feb 11, 2013 2:58 pm
by Delpfine
Perfect! I did the same thing in products.tpl to move the breadcrumbs on the detail page.
What do I have to do to remove "Click to enlarge" on the category page?
Thanks!