johnviz Posted November 12, 2005 Share Posted November 12, 2005 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 More sharing options...
MJP Posted November 12, 2005 Share Posted November 12, 2005 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.