在我的 product.liquid 上,我正在提取我的相关产品.liquid 代码段:
{% if collection and collection.products_count > 1 %}
<div class="row">
<div class="span12">
<h2 class="collection-title">Related products</h2>
</div>
</div>
<div class="row products">
{% assign current_product = product %}
{% assign current_product_found = false %}
{% for product in collection.products limit: 5 %}
{% if product.handle == current_product.handle %}
{% assign current_product_found = true %}
{% else %}
{% unless current_product_found == false and forloop.last %}
{% include 'product-loop-shop' with collection.handle %}
{% endunless %}
{% endif %}
{% endfor %}
</div>
{% endif %}
当我第一次从主页单击产品时,会显示相关产品,当我单击其中一个相关产品时,底部的整个相关产品块不会出现。
如果我遗漏了什么,请告诉我。