I'm trying to implement CustomersWhoSawThisAlsoSaw, CustomerWhoBoughtThisAlsoBought, MostPopularProducts or WhatAboutTheseProducts - but none of them seems to work in my template. The products fields just shows values of the product of the productpage.
I have template blocks like this:
<table>
<tbody>
<!--@LoopStart(eCom:Related.CustomersWhoSawThisAlsoSaw)-->
<tr>
<td colspan="2" class="ProductImage"><a href="<!--@Ecom:Product.Link.Clean-->"><!--@Ecom:Product.ImageSmall.Default--></a></td>
</tr>
<tr>
<th colspan="2">
<a href="<!--@Ecom:Product.Link.Clean-->"><h4><!--@Ecom:Product.Name--></h4></a>
</th>
</tr>
<tr>
<th>Lager</th>
<td>
<!--@Ecom:Product:Stock.Text-->
</td>
</tr>
<tr>
<th>Pris</th>
<td>
<!--@Ecom:Product.Price-->
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<!--LoopEnd(eCom:Related.CustomersWhoSawThisAlsoSaw)-->
</tbody>
</table>
Any suggestions that could help me?
Thank you
Martin