mrjones Posted March 3, 2003 Share Posted March 3, 2003 I want to remove the New Product Table in the middle section of my default page (store entry page). Is there an easy way to toggle it on or off? MrJones Link to comment Share on other sites More sharing options...
toolcrazy Posted March 3, 2003 Share Posted March 3, 2003 default.php line approx 321 on MS1 Comment out just the php code. // is the comment tags. This will disable the PHP only. <td><br><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> I found you can't just remove the <td><br> </td> tags, it does strange things. Steve ------------------------- Link to comment Share on other sites More sharing options...
mrjones Posted March 3, 2003 Author Share Posted March 3, 2003 Steve Thanks for the quick reply. I did what you said but was getting an error because of the ></td>, unexpected ">" in code. But I messed around with it and this finally worked. <td><br><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?> </td> Thanks for your help!! MrJones Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.