Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Change catroigey link


KJexotics

Recommended Posts

Posted

Hi

 

On the left where you have catriogreys i would like to change one so it faces to a diffrent site can this be done ???

 

KJ

Posted

At around line #28 of includes/boxes/categories.php, replace

	  $categories_string .= tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">';

with

	// added to direct this category listing link elsewhere
if ($cPath_new == 'cPath=your_number_here') {
  $categories_string .= 'http://your_other_website_here">';
} else {
  // original code below
  $categories_string .= tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">';
}

You will have to determine your cPath by hovering over the existing category link at your store (or look it up in the database) and write it EXACTLY as it appears in place of 'your_number_here', then replace 'your_other_website_here' with your link address.

For ALL problems, please review this link first -> osCommerce Knowledge Base

Archived

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

×
×
  • Create New...