Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

removing "top" and catalog" from header


akosh

Recommended Posts

catalog/includes/english.php near the top

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

I did mine like this:

 

In catalog/includes/header.php

 

Find

< ?php echo $breadcrumb->trail(' » '); ?>

about line 42

 

where it says (' » ');

 

take out the » so that you have (' ');

 

----------------------------------------------

 

Then in catalog/includes/languages/english.php

 

Find the words "Catalog" or whatever you want removed and simply remove them, so if it said

define('HEADER_TITLE_TOP', 'Top');

 

you would take out the word Top, so you are left with

 

define('HEADER_TITLE_TOP', '');

 

This may not be the correct way to do it, but its working for me!

Tammy

Link to comment
Share on other sites

Of course it would be easier to simply comment out the whole line as in:

 

< ?php //echo $breadcrumb->trail(' » '); ?>

 

or simply remove it altogether.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...