akosh Posted March 20, 2004 Share Posted March 20, 2004 how do I remove "top" and "catalog" from the header? Link to comment Share on other sites More sharing options...
tammy507 Posted March 20, 2004 Share Posted March 20, 2004 I need to do this too, so if I find an answer, Ill let you know Tammy Link to comment Share on other sites More sharing options...
AlanR Posted March 20, 2004 Share Posted March 20, 2004 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 More sharing options...
akosh Posted March 20, 2004 Author Share Posted March 20, 2004 I would like nothing to show up in the header bar at all. So how would I also remove the name of the products, etc from the bar? Link to comment Share on other sites More sharing options...
tammy507 Posted March 20, 2004 Share Posted March 20, 2004 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 More sharing options...
Guest Posted March 20, 2004 Share Posted March 20, 2004 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.