sac9829 Posted May 21, 2004 Posted May 21, 2004 How do I change my front page so that the Upcoming Products area is on top / comes before the new products for May? What file do I need to change and how do I change it!
stevel Posted May 22, 2004 Posted May 22, 2004 The code in question is as follows in index.php: <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> To reverse these, move the last three lines to before the first three lines, so it looks like this: <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> Steve Contributions: Country-State Selector Login Page a la Amazon Protection of Configuration Updated spiders.txt Embed Links with SID in Description
Recommended Posts
Archived
This topic is now archived and is closed to further replies.