Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Navgation bar - "Top"


jackeen

Recommended Posts

Posted

Hello.

In the top navigation bar on my site there is a link for "top".

When this is clicked, I see a page "Index Of /" and then 2 links to "Parent Directory" and "Catalog".

How do I prevent this link from appearing?

Posted

In /catalog/includes/languages/english.php

Find This

 

 

 

// 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', 'Top');

define('HEADER_TITLE_CATALOG', 'Catalog');

define('HEADER_TITLE_LOGOFF', 'Log Off');

define('HEADER_TITLE_LOGIN', 'Log In');

 

// footer text in includes/footer.php

 

 

On the sixth line down is the top that you are looking for

Change this

 

 

define('HEADER_TITLE_TOP', 'Top');

 

 

 

to this

 

 

define('HEADER_TITLE_TOP', '');

  • 2 weeks later...

Archived

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

×
×
  • Create New...