Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I


sac9829

Recommended Posts

Posted

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!

Posted

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...