Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Removal of "Customers who bought..."


Pink

Recommended Posts

Posted

I am in the process of paring down some of the features on my site and have run into trouble getting rid of the "Customers who bought this product also purchased" box.

 

Help would be appreciated.

 

-Pink

Posted
I am in the process of paring down some of the features on my site and have run into trouble getting rid of the "Customers who bought this product also purchased" box.

 

Help would be appreciated.

 

-Pink

 

In product_info.php find:

<?php
   if ((USE_CACHE == 'true') && empty($SID)) {
     echo tep_cache_also_purchased(3600);
   } else {
     include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
   }
 }
?>

and change to:

<?php
   if ((USE_CACHE == 'true') && empty($SID)) {
    // echo tep_cache_also_purchased(3600);
   } else {
    // include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
   }
 }
?>

That should be all.

Archived

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

×
×
  • Create New...