Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Is it possible to change the redirecting


KillingScream

Recommended Posts

If my store is something like.. www.thisisagoodshop.com/store

And I click on 'Top', it goes to www.thisisagoodshop.com

Is it possible to change 'Top', so it redirects to something that I want?

This is what I mean:

12.JPG

 

Anyone help me out ?

 

Oh, btw, got another question too!

Is it possible to remove pictures?

123.JPG

I got that.. but I don't want pictures there... How can I remove it ? :)

 

Thanks in advance!

Link to comment
Share on other sites

To remove the 'Top' link find catalog/includes/application_top.php

 

Find this section:

// include the breadcrumb class and start the breadcrumb trail
 require(DIR_WS_CLASSES . 'breadcrumb.php');
 $breadcrumb = new breadcrumb;

 $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER);
 $breadcrumb->add(HEADER_TITLE_CATALOG, tep_href_link(FILENAME_DEFAULT));

 

And comment out the HEADER_TITLE_TOP line so it looks like this:

// include the breadcrumb class and start the breadcrumb trail
 require(DIR_WS_CLASSES . 'breadcrumb.php');
 $breadcrumb = new breadcrumb;

//  $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER);
 $breadcrumb->add(HEADER_TITLE_CATALOG, tep_href_link(FILENAME_DEFAULT));

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...