Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove breadcrumb navigation bar


sprinter_

Recommended Posts

Hi.  Where do you do to comment out the breadcrumb navigation bar?

 

The breadcrumb is in catalog/includes/header.php.

 

Around line 63 look for the following:

 

<td class="headerNavigation">  <?php echo $breadcrumb->trail(' » '); ?></td>

 

Simply change to the following to get rid of the breadcrumb:

 

<td class="headerNavigation"> </td>

 

Hope that helps... :blush:

Link to comment
Share on other sites

  • 1 year later...

I know it's been while since this thread was started but you can also just comment out the code for the breadcrumb, that way if you need or want it in the future, you can still use it

 

in catalog/includes/header.php (around line 63?)

 

Change:

 

<td class="headerNavigation">  <?php echo $breadcrumb->trail(' » '); ?></td>

 

to

 

<td class="headerNavigation">  <?php //echo $breadcrumb->trail(' » '); ?></td>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...