Tags return products with no images

I notice that if I click a link in the tag cloud it returns pages with no images for the products even though they all have product images, I get rows of default ‘NO Image Available’ images which if I was visiting the site would make me think that there were no product images at all.



Is that normal for all tag links or am I missing something?

Could you send up a link.



Thanks.

Thanks for the reply.



Currently my cart directory is pass protected while still under development.

I have PM’d you with a link and a user login.

I note that this is still an issue in V 2.1.2

Tag links return pages without the product thumbnails



Can anyone confirm is this has been fixed in the latest release?

In order to fix this bug please replace the following part of code:



if (!empty($products)) {

foreach ($products as $k => $v) {

fn_gather_additional_product_data($products[$k], true, false, true, true, true);

}

}



with this one:



if (!empty($products)) {

foreach ($products as $k => $v) {

fn_gather_additional_product_data($products[$k], true, true, true, true, true);

}

}



in the “tags.php” file, located in the “addons/tags/controllers/customer” directory.