Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

What's New Box


llz925

Recommended Posts

Posted

So I've commented out successfully the "New Products for ___" box on the front page and the left side column, but all of the other subsequent pages now feature this same box in the body part of the page. Any help figuring out what other pages I need to comment out this in?

Posted

well in the standard osC it's only on the front page and left column - it's obviously been added in somewhere - if it's *Every* page try includes/footer.php - perhaps a site link might help

Posted

The following code occurs twice in index.php - you've obviously only commented out one of them - find the code below

 

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

 

change to

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

Posted
The following code occurs twice in index.php - you've obviously only commented out one of them - find the code below

 

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

 

change to

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

 

 

It worked! Yes, I must have missed that line before - Thanks so much!

Archived

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

×
×
  • Create New...