Hallo. ich brauche für einen Produktvergleich 4 Bilder.
1 cover bild und dann 3 weitere Produktbilder.
Wie kann ich es auffüllen, so dass folgendes herauskommt.
"cover";"bild2";"bild3";""; oder
"cover";"";"";""; oder
.....?
Hier ist mein Twig:
"{% if product.cover is not null %}{{ product.cover.media.url }}{% endif %}";{#- -#}
{%- if product.media|length > 1 -%}
{%- for mediaAssociation in product.media|slice(1,3) -%}
"{{ mediaAssociation.media.url }}"
{%- if not loop.last -%};{%- endif -%}
{%- endfor -%}
{%- endif -%}{#- -#}