How to limit Shopify search input to a specific collection?(如何将Shopify搜索输入限制为特定的集合?)
本文介绍了如何将Shopify搜索输入限制为特定的集合?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试进行仅按集合中的结果进行搜索/筛选的搜索输入。
这是搜索模板:
<div id="col-main" class="page-search">
{% if search.results_count == 0 or search.performed == false %}
<h4 class="title">{{ 'search.general.heading' | t: count: search.results_count }}: {{ 'search.general.results_with_count' | t: terms: search.terms, count: search.results_count }}</h4>
<form class="search-form" action="/search">
<input type="hidden" name="type" value="product" />
<input type="hidden" name="options[prefix]" value="last" />
<input type="text" name="q" class="search_box" placeholder="{{settings.search_placeholder}}" value="{{ search.terms }}" />
<button type="submit" class="search-submit" title="Search">
{% if settings.search_icon_type == 'font-icon' %}
<i class="demo-icon {{ settings.search_font_icon }}"></i>
{% else %}
<img src="{{ settings.search_icon | img_url: '20x' }}" alt="Search" />
{% endif %}
</button>
</form>
{% else %}
{% if search.performed %}
{% paginate search.results by 16 %}
<h4 class="title">{{ 'search.general.heading' | t: count: search.results_count }}: {{ 'search.general.results_with_count' | t: terms: search.terms, count: search.results_count }}</h4>
<div class="cata-product cp-grid">
{% for product in search.results %}
{% if product.object_type == 'product' %}
<div class="product-grid-item">
{% include 'product-item' %}
</div>
{% else %}
<div class="article-grid-item">
{% include 'article-result' %}
</div>
{% endif %}
{% endfor %}
</div>
{% if paginate.pages > 1 %}
{% include 'pagination' %}
{% endif %}
{% endpaginate %}
{% endif %}
{% endif %}
如何将其编辑为仅在与"已用"匹配的集合名称中进行搜索?
有shopify collection object,但不知道是否应该尝试编辑:
<input type="text" name="q" class="search_box" placeholder="{{settings.search_placeholder}}" value="{{ search.terms }}" />
或搜索结果
{% for product in search.results %}
如有任何帮助我们将不胜感激,谢谢
推荐答案
获取所有结果、筛选、生成;问题是分页,我目前没有解决方案。
{% paginate search.results by search.results_count %}
{% for item in search.results %}
{% if item.object_type == 'product' %}
{% for collection in item.collections %}
{% if collection.title contains 'myCollectionTitle' %}
{% assign image = item.featured_image | img_url: 'medium' %}
<a href="{{item.url}}">{{item.title}} <img src="{{image}}" alt="" class="" loading="lazy" width="" height=""></a><br>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endpaginate %}
这篇关于如何将Shopify搜索输入限制为特定的集合?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何将Shopify搜索输入限制为特定的集合?
基础教程推荐
猜你喜欢
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01