Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Almost there but can't find last control


ComicWisdom

Recommended Posts

I have gone to the admin and set number to 0 for minimum value also purchased, for maximum value for products purchased, and for maximum value for new products but....

 

I am still getting the messages across the screen:

 

Customers who purchased this also....

 

and/or

 

New products for the month of.....

 

There is nothing under them, but how can a get rid of these lines.

Just between us, remember there are only 10 kinds of people in the world; those who understand binary and those who don't!!

 

Remember, learning is a "do-it-yourself" experience; although, not necessarily a "do-it-BY-yourself" experience.

 

The quickest way to learn is to forget to BACKUP!

Link to comment
Share on other sites

is it in either of the columns? because it can then you just comment some code in either column_right.php or column_left.php, give me a link to a page that has 'Customers who purchased this also....'

Menou and unome

Link to comment
Share on other sites

and if you mean the new products on the home page, replace

<td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>

with

			<td><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>

Menou and unome

Link to comment
Share on other sites

Find in product_info.php:

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

and replace with

<?php /*

if ((USE_CACHE == 'true') && empty($SID)) {

echo tep_cache_also_purchased(3600);

} else {

include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);

*/}

}

?>

 

That should get rid of the Customers also purchased problem, but i am sure there is an easier method that i dont know about, like some switch in the admin.

 

Nick

Menou and unome

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...