I want to remove the "New Products" section.
Thanks!
Dalaubon
This is a discussion on How do I remove the "New Products" section on the within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; I want to remove the "New Products" section. Thanks! Dalaubon...
I want to remove the "New Products" section.
Thanks!
Dalaubon
You'll have to play around with the conditional "if" statement in the default.php page. I think it has about 3 checks, so you'll have to decide what to replace one of the checks with.
![]()
depending on your version look for this in default.php, or index.php
there will be two instances of this code:find both of them and comment it out like thisCode:<td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>that should do the trickCode:<td><?php // include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>![]()
Bookmarks