Shopify - 循环 collection
Shopify - looping collection
我正在使用 shopify 主题,我想遍历 collection 中的每个产品。我创建了一个产品并将其添加到名为 "landing" 的 collection 中。但是,它没有出现在这个循环中。有什么想法我应该看吗?
谢谢!
{% for product in collections.landing limit:3 %}
<h3>testing</h3>
{% endfor %}
这个应该可以正常工作:
{% for product in collections.landing.products limit:3 %}
<h3>testing</h3>
{% endfor %}
确保您已添加到 "landing" 系列的产品设置为在在线商店中可见。
我正在使用 shopify 主题,我想遍历 collection 中的每个产品。我创建了一个产品并将其添加到名为 "landing" 的 collection 中。但是,它没有出现在这个循环中。有什么想法我应该看吗?
谢谢!
{% for product in collections.landing limit:3 %}
<h3>testing</h3>
{% endfor %}
这个应该可以正常工作:
{% for product in collections.landing.products limit:3 %}
<h3>testing</h3>
{% endfor %}
确保您已添加到 "landing" 系列的产品设置为在在线商店中可见。