deftonez Posted May 21, 2004 Share Posted May 21, 2004 hey im this is my 1st osC install and im a little confused of deleteing stuff to customize it. 1. how do you get rid of the box towards the bottom. "New products for ----" 2. how do you get rid of the "review" box to the right? 3. for the "new product" box on the left, is there a simple way of just renaming "new product" to "feature product" thank you. -dennis Link to comment Share on other sites More sharing options...
241 Posted May 21, 2004 Share Posted May 21, 2004 This box is used for more than one thing but to completely remove the box it is the new products box catalog/index.php catalog/index.php Try looking for this around line 121 <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> change to this <td><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> This around line 280 (for product list) <td><?php include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?></td> change to this <td><?php //include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?></td> This around line 313 <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> change to this <td><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> This around line 316 ( for upcoming products) <?php ? ?include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> change to this <?php ? // include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> Then for the reviews catalog/includes/column_right.php locate this code require(DIR_WS_BOXES . 'reviews.php'); and change to this // require(DIR_WS_BOXES . 'reviews.php'); do you mean the whats new box, if so then catalog/includes/languages/english.php locate this code // whats_new box text in includes/boxes/whats_new.php define('BOX_HEADING_WHATS_NEW', 'What\'s New?'); and change to this // whats_new box text in includes/boxes/whats_new.php define('BOX_HEADING_WHATS_NEW', 'Feature Product'); No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.