我正在尝试将我的所有产品添加到首页,而不仅仅是选择3,如果有人可以指出我的方向很好,那么我是shopify的主要新人。
{% for product in collections.frontpage.products %}
{% include 'product' with product %}
{% endfor %}
答案 0 :(得分:0)
你可以尝试:
{% for product in collections.all.products %}
{% include 'product' with product %}
{% endfor %}
虽然最好改变您的frontpage
集合以包含所有产品。使用条件为Product price is greater than 0的智能收藏。
如果您有超过50种产品,则需要使用pagination。
这是一个类似的问题:How do I display all of my products on my home page using Shopify and Liquid?。