I have a loop where I write information about products in a certain group. The layout is table based and I want to change row every third product.
<!--@If Defined(Products.LoopMod3)-->
</tr><tr>
<!--@EndIf(Products.LoopMod3)-->
But this If is always true.
When I write
<!--@If Defined([Products].LoopMod3)-->
</tr><tr>
<!--@EndIf([Products].LoopMod3)-->
The check always becomes false.