I have the following problem. I have a FOR loop and couple of IF statements like this:
{% for option in group %} {% if option.type == 'palette' %} {% for option_value in option.product_option_value %} {% if option_value.image %} <div>I am here</div> {% endif %} {% endfor %} {% endif %} {% endfor %} I just want to check/create one IF statements showing whether or not there is option_value.image anywhere (showing at least once).
Thanks in advance