Hi @zenna!
In /themes/YOUR_THEME/product-list.tpl add:
{assign var='productImgs' value=Product::getProductImages($product.id_product)}
<ul class="list-inline">
{foreach from=$productImgs item=productImg name=productImgs}
{assign var=imageIds value="`$product.id_product`-`$productImg.id_image`"}
<li><img class="width:76px;" src="{$link->getImageLink($product.link_rewrite, $imageIds, 'small_default')}" /></li>
{/foreach}
</ul>
In /classes/Product.php add just before close backet "}"
public static function getProductImages($id_product){
$id_image = Db::getInstance()->ExecuteS('SELECT `id_image` FROM `'._DB_PREFIX_.'image` WHERE `id_product` = '.(int)($id_product));
return $id_image;
}
Then delete /cache/class_index.php file, and hit CTRL+F5 at the home or category page! Thats it! Tested 1.6.1.13
If helped please spread the word or donate my charity for Autism at www.forrunner.pl or give me a like at www.fb.com/ForRunner
Cheers!
Konrad