Quote:
In Manufacturer slider on home page how to put top 20 Manufacturer manually?
|
You'll need to edit skin/reboot/custom/widgets/home_manufacturers.tpl
Take out the opening and closing {foreach} loop code.
Then add your manufacturers manually, using the code within the old {foreach} loop...
Quote:
<div class="item text-center">
<a href="manufacturers.php?manufacturerid=123" title="Manufacturer">
<img class="lazy" src="{$AltImagesDir}/spacer.gif" width="1" height="1" data-src="path/to/manuf/image/image.jpg" alt="Manufacturer">
<p>Manufacturer</p>
</a>
</div>
...
|