Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to change "Top" to "Home" on breadcrumbs


oliviaiam

Recommended Posts

Posted
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');

Posted
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.

Archived

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

×
×
  • Create New...