oliviaiam Posted September 27, 2007 Posted September 27, 2007 Hi, How do I change the breadcrumb that currently says "Top" to read "Home"?
Yukon4 Posted September 27, 2007 Posted September 27, 2007 Hi, How do I change the breadcrumb that currently says "Top" to read "Home"? Finally, a question I can answer! I just posed this same question myself. You go into catalog > includes > languages > english.php Within the english.php file you'll see this block of code (below) - kind of midway down. And as you can see, where it says header title top - I changed mine to read "HOMEPAGE". That's it! // header text in includes/header.php define('HEADER_TITLE_CREATE_ACCOUNT', 'Create an Account'); define('HEADER_TITLE_MY_ACCOUNT', 'My Account'); define('HEADER_TITLE_CART_CONTENTS', 'Cart Contents'); define('HEADER_TITLE_CHECKOUT', 'Checkout'); define('HEADER_TITLE_TOP', 'HOMEPAGE'); define('HEADER_TITLE_CATALOG', 'Catalog'); define('HEADER_TITLE_LOGOFF', 'Log Off'); define('HEADER_TITLE_LOGIN', 'Log In');
oliviaiam Posted September 28, 2007 Author Posted September 28, 2007 Finally, a question I can answer! I just posed this same question myself. You go into catalog > includes > languages > english.php Within the english.php file you'll see this block of code (below) - kind of midway down. And as you can see, where it says header title top - I changed mine to read "HOMEPAGE". That's it! // header text in includes/header.php define('HEADER_TITLE_CREATE_ACCOUNT', 'Create an Account'); define('HEADER_TITLE_MY_ACCOUNT', 'My Account'); define('HEADER_TITLE_CART_CONTENTS', 'Cart Contents'); define('HEADER_TITLE_CHECKOUT', 'Checkout'); define('HEADER_TITLE_TOP', 'HOMEPAGE'); define('HEADER_TITLE_CATALOG', 'Catalog'); define('HEADER_TITLE_LOGOFF', 'Log Off'); define('HEADER_TITLE_LOGIN', 'Log In'); Thanks, Yukon. It's so easy...when you know how to do it.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.