2017-03-16 197 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>