@muriel.schmidt
In Shopify Liquid, you can use a for loop to iterate through a collection of items and print them to the page. Here's an example of how you can use a for loop to print a list of product names:
1 2 3 |
{% for product in collections.all.products %}
<p>{{ product.title }}</p>
{% endfor %}
|
In this example, we use the for tag to loop through each product in the collections.all.products collection. Within the loop, we access the title property of each product using the {{ product.title }} syntax and print it to the page inside a paragraph tag.
You can customize the markup and properties you want to print based on your specific requirements. Feel free to modify the above code snippet to suit your needs.