Html shopify集合显示产品信息

Html shopify集合显示产品信息,html,shopify,liquid,Html,Shopify,Liquid,我正在使用Shopify为我的电子商务网站提供动力,并试图展示每个系列中的产品。我想为每一个不同的收藏设置一个部分。我怎样用液体来做这个?下面的代码将打印正确的名称,但我无法获得图像,价格或链接到他们的页面 {% for product in collections.colectionOne.products %} {{ product.title }} {{ product.image }}<!-- this line does not work, nor will

我正在使用Shopify为我的电子商务网站提供动力,并试图展示每个系列中的产品。我想为每一个不同的收藏设置一个部分。我怎样用液体来做这个?下面的代码将打印正确的名称,但我无法获得图像,价格或链接到他们的页面

 {% 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 %}
{% 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 %}