2014-10-22 132 views
0

我正在使用Shopify來爲我的電子商務網站供電,並試圖在每個收藏中顯示產品。我想爲每個不同的收藏有一個部分。我如何使用Liquid來做到這一點?下面的代碼將打印正確的名稱,但我不能得到圖像,價格或鏈接到他們的網頁。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 %} 

回答

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