Shopify - 循环收藏

时间:2016-08-10 06:13:04

标签: shopify

我正在使用shopify主题,我想在一个集合中循环每个产品。我创建了一个产品,然后将其添加到名为“landing”的集合中。但是,它并没有出现在这个循环中。我应该看看哪些想​​法?

谢谢!

{% for product in collections.landing limit:3 %}
    <h3>testing</h3>
{% endfor %}

1 个答案:

答案 0 :(得分:3)

这个应该正常工作:

{% for product in collections.landing.products limit:3 %}
    <h3>testing</h3>
{% endfor %}

确保您已添加到&#34;登陆&#34;集合设置为在在线商店中可见。