shopify集合显示产品信息



我正在使用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 %}
{% 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 %}

相关内容

  • 没有找到相关文章

最新更新