2017-03-16 153 views
0

我想在我的shopify商店中生成相关产品,其中显示的是某些产品,但大多数不是,我想要的是,首先通过匹配供应商/品牌显示相关产品,如果未找到显示同类产品:相关产品无法正确显示

任何人都可以请建议如何处理?

<div class="related-products row"> 
{% assign vendor = product.vendor %} 
{% assign vendor_handle = vendor | handleize %} 

{% assign handle = product.handle %} 
<h4 style="text-align:left;">More in this collection</h4> 
{% assign counter = '' %} 
{% for product in collections[vendor_handle].all_products %} 
    {% if vendor == product.vendor and counter.size < 4 and handle != product.handle %} 
    {% capture temp %}{{ counter }}*{% endcapture %} 
    {% assign counter = temp %} 
    <div class="col-md-3 col-sm-3 col-xs-12"> 
    <div class="reveal"> 
     <a href="{{ product.url | within: collection }}" title="{{ product.title }}"> 
     <img src="{{ product.images.first | product_img_url: 'large' }}" class="img-responsive" alt="{{ product.title }}" /> 
     </a> 
    </div> 
    <a href="{{ prod.url | within: collection }}" title="{{ prod.title | escape }}"> 
     {{ product.title | escape }} 
    </a> 
    </div> 
    {% endif %} 
{% endfor %} 
</div> 

回答

1

你使用以下行

{% for product in collections[vendor_handle].all_products %}

,什么是prod改变主产品?

请尝试以下

<div class="related-products row"> 
{% assign vendor = product.vendor %} 
{% assign vendor_handle = vendor | handleize %} 

{% assign handle = product.handle %} 
<h4 style="text-align:left;">More in this collection</h4> 
{% assign counter = 0 %} 
{% for coll_product in collections[vendor_handle].all_products %} 
    {% if vendor == coll_product.vendor and counter < 4 and handle != coll_product.handle %} 
    {% assign counter = counter | plus: 1 %} 
    <div class="col-md-3 col-sm-3 col-xs-12"> 
    <div class="reveal"> 
     <a href="{{ coll_product.url | within: collection }}" title="{{ product.title }}"> 
     <img src="{{ coll_product.images.first | product_img_url: 'large' }}" class="img-responsive" alt="{{ coll_product.title }}" /> 
     </a> 
    </div> 
    <a href="{{ coll_product.url | within: collection }}" title="{{ coll_product.title | escape }}"> 
     {{ coll_product.title | escape }} 
    </a> 
    </div> 
    {% endif %} 
{% endfor %} 
</div>