Breadcrumbs

General Support for technical Issues relating to AlegroCart
Post Reply
Delpfine
Posts: 142
Joined: Fri Feb 08, 2013 3:47 pm
Location: Austin, TX

Breadcrumbs

Post by Delpfine » Mon Feb 11, 2013 11:38 am

What do I need to do to move the breadcrumbs to the top of the category page and the product detail page? Thanks.

User avatar
Brent
Site Admin
Posts: 4459
Joined: Sat Dec 12, 2009 3:35 pm
Location: Canada eh

Re: Breadcrumbs

Post by Brent » Mon Feb 11, 2013 2:20 pm

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.

Delpfine
Posts: 142
Joined: Fri Feb 08, 2013 3:47 pm
Location: Austin, TX

Re: Breadcrumbs

Post by Delpfine » Mon Feb 11, 2013 2:58 pm

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!

Post Reply