Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

"New Products For"....


johnviz

Recommended Posts

I still have the New Products For Box on the bottom of my home page... I want to get rid of this altogether, can someone direct me as to which file I need to alter and what code to remove? Thanks in advance.

 

Johnviz

Link to comment
Share on other sites

I still have the New Products For Box on the bottom of my home page... I want to get rid of this altogether, can someone direct me as to which file I need to alter and what code to remove? Thanks in advance.

 

Johnviz

 

 

Look for this in the catalog/index.php:

 

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

 

and comment out right before the include. Such as:

 

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

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...