surferboy Posted January 29, 2007 Posted January 29, 2007 Hello, I just installed Featured Products 1.5.9. The install went well and it worked as stated. What I am wondering, is there a way I can make the featured products area on my homepage look like it did when it was new products? My new products area was formated with some tables and I would like the make the featured products area look the same. Is there a way to change new_products.php into featured.php? Thanks so much for you help! Surferboy Quote
Guest Posted March 2, 2007 Posted March 2, 2007 Hi, I would like to know this too! I want to change it to 2 rows of 3 products. Any clues? Cheers, Leah :) Quote
Guest Posted March 11, 2007 Posted March 11, 2007 I am also woundering how this is done.. I cant seem to find the support tread for this contribution either.. :( Quote
Guest Posted March 11, 2007 Posted March 11, 2007 the support thread of Featured Products http://www.oscommerce.com/forums/index.php?showtopic=75061&st=60 you may miss the following lines in " catalog/index.php " <tr> <td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td> </tr> see below . it works for me. hope it would work for you too. ......quoted from Nicko ...... In file catalog/index.php about line 350 must have this code to display the "New products on month.." module: CODE <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> is possible you hace instead this the code to display the featured products duplicate: CODE <tr> <td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td> </tr> only need one and restore the new products module: CODE <tr> <td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> good luck , jason Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.