Im trying to get the product thumbnails to show up for a specific category page. in the Category Product List Layout tab, I changed the view to point+click mode, then selected that it show in line item, check marked thumbnail, then clicked on the update button. the code for it is:
the problem, is that it is showing the full sized images and not thumbnails, the mvt:if expression is calling the mvte:product:thumbnail; and not the image, so I dont understand what might be happening.
you can see the page here:
any suggestions?
Code:
<td class="item-image">
<mvt:if expr="NOT ISNULL l.settings:product:thumbnail">
<a href="&mvte:product:link;"><img src="&mvte:product:thumbnail;" alt="&mvte:product:name;" /></a>
<mvt:else>
</mvt:if>
</td>
you can see the page here:
any suggestions?
Comment