shopify集合显示产品信息

时间:2014-10-22 01:33:12

标签: html5 shopify liquid

我正在使用Shopify为我的电子商务网站供电,并尝试在每个系列中展示产品。我想为每个不同的集合都有一个部分。我怎么能用Liquid做到这一点?下面的代码将打印正确的名称,但我无法获得图像,价格或链接到他们的页面。

 {% for product in collections.colectionOne.products %}
    {{ product.title }} 
    {{ product.image  }}<!-- this line does not work, nor will it in a img tag as the sorce -->
 {% endfor %}

 {% for product in collections.colectionTwo.products %}
    {{ product.title }}   
 {% endfor %}

1 个答案:

答案 0 :(得分:0)

{% for product in collections.supa-zxhibt.products %}
    {{ product.title }} 
    <a href="{{product.url}}"><img src="{{ product.featured_image | product_img_url: 'thumb' }}" /></a>
    {{ product.price | money  }} 
{% endfor %}