0
私はShopify製品からの製品のみを表示したいが、ここにもページや投稿が表示され、検索結果のために私のコードです:商品を検索結果に表示するには?
{% if item.object_type == 'product' %}
しかし:
<div class="product-list">
{% if grid_results == false %}
{% for item in search.results %}
{% include 'search-result' %}
{% endfor %}
{% else %}
<div class="grid-uniform">
{% for item in search.results %}
{% include 'search-result-grid' %}
{% endfor %}
</div>
{% endif %}
{% endif %}
</div>
今私は、次のコードを持ってこのコードを入力すると、テキストを検索するための製品しか入手できません。
です。 –
検索結果の2ページ目にコードを使用してフィルタリングすると、結果が0になる可能性があります。つまり、 '{if if item.object_type == 'product'%}'というコードを2つの 'include'文の上に置きます。 – HymnZ