You should be looking in
/skin1/modules/Fast_Lane_Checkout/home.tpl for what you want to do.
There are two lines similar to this:
Code:
<td valign="top" width="150"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /></td>
The first occurrence of that line is for a left column, the second for a right column.
Thus, for a left column display replace the first occurrence with this:
Code:
<td valign="top" width="150">{include file="modules/Recommended_Products/recommends.tpl"}</td>
Quote:
Originally Posted by Learner
Actually I add bestsellers and recommended product code in /modules/Fast_Lane_Checkout/home_main.tpl for display.
{include file="modules/Recommended_Products/recommends.tpl"}
{include file="modules/Bestsellers/bestsellers.tpl"}
---But it will display Recommended products list at the top and Bestsellers at the bottom.I want to display Recommended products list at the left side cart at central position(As it is) Bestsellers at the right side.
How to do that?
|