Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How can I remove 'top' from Breadcrumbs?


Guest

Recommended Posts

Posted

My store runs in a frame, and the 'top' link in the breadcrumb trail loads the main gateway for my website into the frame, I would prefer to have the breadcrumb navigation start with 'catalog'. Is this possible?

 

Thanks for any assistance

Posted
My store runs in a frame, and the 'top' link in the breadcrumb trail loads the main gateway for my website into the frame, I would prefer to have the breadcrumb navigation start with 'catalog'. Is this possible?

 

Thanks for any assistance

 

The easiest way, I think, is to go to catalog/includes and change in application_top.php (almost at the end of the file):

$breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER);

to

// $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER);

That should do it (just comment it out).

Posted

I personally prefer the solution by Howard above.

 

But, just in case you need it. There is an alternative.

 

To change 'Top' to 'Home' etc., open catalog/includes/languages/english.php and change this line

define('HEADER_TITLE_TOP', 'Top');

Posted
I personally prefer the solution by Howard above.

 

But, just in case you need it.  There is an alternative.

 

To change 'Top' to 'Home' etc., open catalog/includes/languages/english.php and change this line

define('HEADER_TITLE_TOP', 'Top');

 

Perfect! THANK YOU.

Archived

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

×
×
  • Create New...