{# première boucle pour savoir si aucune des option n'a d'image #}
{% set noImg = true %}
{% for productSousOption in productOption.productSousOptions %}
{% if productSousOption.getWebPath %}
{% set noImg = false %}
{% endif %}
{% endfor %}
{% if noImg and productOption.choiceQuantity < 2 %}
{% endif %}