Is there a way to loop over an array in a workflow...
# general-english
a
Is there a way to loop over an array in a workflow step? I see LiquidJS has syntax to do a FOR loop like this but it does not seem to be working
Copy code
{% for product in collection.products %}
  {{ product.title }}
{% endfor %}
Is there another way to do this?
4 Views