zozzoozzz Posted May 7, 2009 Posted May 7, 2009 How to move the "what's new?" box from the left-column to the below of the "new product for month"? and which AND-ON can helps? thanks :)
FIMBLE Posted May 7, 2009 Posted May 7, 2009 in your catalog / includes / colum_left.php find the code that adds it there ... this require(DIR_WS_BOXES . 'whats_new.php'); And add to the index.php file after this on line 313 ish <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> add it as this </tr> <tr> <td><?php require(DIR_WS_BOXES . 'whats_new.php'); ?></td> </tr> it will make the box the same width so might look a bit long there! You will also need to comment out the code in your colum_left.php by adding // at the beginning of the code like this // require(DIR_WS_BOXES . 'whats_new.php'); Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
zozzoozzz Posted May 7, 2009 Author Posted May 7, 2009 in your catalog / includes / colum_left.php find the code that adds it there ... this require(DIR_WS_BOXES . 'whats_new.php'); And add to the index.php file after this on line 313 ish <td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> add it as this </tr> <tr> <td><?php require(DIR_WS_BOXES . 'whats_new.php'); ?></td> </tr> it will make the box the same width so might look a bit long there! You will also need to comment out the code in your colum_left.php by adding // at the beginning of the code like this // require(DIR_WS_BOXES . 'whats_new.php'); Nic Thanks NIC but whether the product quantity in the what's new box is 1? and how to set the product quantity in the box? thank u a lot! :)
FIMBLE Posted May 7, 2009 Posted May 7, 2009 dont think you can from admin, its supposed to only show one, so you will need to alter the code to make it happen Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
zozzoozzz Posted May 8, 2009 Author Posted May 8, 2009 dont think you can from admin, its supposed to only show one, so you will need to alter the code to make it happenNic thanks Nic do u mean that if i have to set the product quantity in the what's new box , I have to edit the code? if i have to set the product quantity in the what's new box to 4 ,how to do that? Is it difficult? JUN
Recommended Posts
Archived
This topic is now archived and is closed to further replies.