Modify the display of a personalisation loop
Display products horizontally rather than vertically, for example
To do this, simply create 3 columns:
- First column:
{% for orderline in order.orderlines limit:3 %} + Image + Product name: {{orderline.product.name}} + Product price: {{orderline.product.price}} € - Second column:
{% endfor %}\ - Third column: leave empty
Please note: To avoid any discrepancies in the display of product names, it is essential to define a maximum character limit for the names of the fields to be displayed and to always use images of the same size.
Updated about 2 months ago
