我是Shopify的新手,我正在尝试获取我添加到我制作的系列中的所有产品图片,并称之为“我的目录”。
我已经开始使用它了,它循环遍历所有图像,但是如何只选择带有“mycatalog”集合的图像呢?
{% for product in collection.products %}
<div>
<a href="{{ url }}">
<div style="background-image: url('{{ product.featured_image | product_img_url: 'large' }}');"> </div>
</a>
</div>
{% endfor %}
我已经测试了一些不同的东西,但我无法让它工作!
一个例子可以帮助我们理解它是如何工作的。 任何意见都表示感谢。
答案 0 :(得分:7)
试试这个:
{% for product in collections.mycatalog.products %}
<div>
<a href="{{ url }}">
<div style="background-image: url('{{ product.featured_image | product_img_url: 'large' }}');"> </div>
</a>
</div>
{% endfor %}
有关详细信息,请参阅Shopify wiki上的Global variables页面:
{% for product in collections.frontpage.products %} {{ product.title }} {% endfor %}
液体变量“集合”包含所有的列表 在商店收藏。