Ecom:LastAddedProduct.AlternativeImages

 

Summary

Returns the images related to user defined patterns of a product last added to cart.

Remarks

User defined patterns can be set via Images-Use alt. patterns-Add pattern option enabled in product catalg module settings. Paragraph has the module shall be apllied in cart paragraph settings with 'Use pattern settings from product catalog' option.     

Examples

Basic usage

Notice the use of @item.GetValue to get data from the loop variable.
If you just write @GetValue, the data will be taken from outside the loop. Similarly, you have to use @item.GetLoop to use loops inside a loop.

<table> <tr> @foreach (LoopItem item in GetLoop("Ecom:LastAddedProduct.AlternativeImages") { <td> @item.GetValue("Relevant.Tag") </td> } </tr> </table>

Check if the loop exists

@if (Loops.Contains("Ecom:LastAddedProduct.AlternativeImages")) { ... }

Example of usage
The following general example illustrates how to use a loop construct.

<table> <!--@LoopStart(Ecom:LastAddedProduct.AlternativeImages)--> <tr> <td><!--@Loop:Tag--></td> </tr> <!--LoopEnd(Ecom:LastAddedProduct.AlternativeImages)--> </table>

Check if the loop exists

<!--@If LoopDefined(Ecom:LastAddedProduct.AlternativeImages)--> ... <!--@EndIf(Ecom:LastAddedProduct.AlternativeImages)-->

Available tags