Shopify:使用液体在主页上显示集合中的产品

时间:2015-09-01 19:54:21

标签: shopify liquid

我正在尝试在我家的客户Shopify商店中添加最受欢迎的产品。所以我听说你做的是创建一个集合(我称之为最受欢迎的集合)然后使用以下代码来显示产品:

<div class="product span4">
    {% assign best = collections["most-popular"] %}
        <ul>
            {% for product in best limit:10 %}
                <li><a href="{{ product.url }}">{{ product.title }}</a></li>
            {% endfor %}
        </ul>
  </div>

简单,但没有奏效。刚拿到一个没有任何东西的空白框。有人知道在我的收藏中显示项目的正确代码吗?

1 个答案:

答案 0 :(得分:0)

尝试使用此代码,它将调用名为Most Popular

的集合中的产品
<div class="product-sec">


<ul>

 {% for product in collections.most_popular.products limit: 4 %}    <!--/*********** most_popular is name under collections limit is uded to show no. of products ******/ -->
           <li><a href="{{ product.url}}"><img style="width:177px;height:177px;" src="{{ product.featured_image | product_img_url: 'medium' }}" alt=""></a></li>
     {% endfor %}
  </ul>
  <span><a href="{{ shop.url }}/collections/most-popular">Most Popular</a></span>

我希望它能帮到你