How can I hide wholesale products from search results?

Dear All

I am trying to hide wholesale products from the search result. I tagged the product by Wholesale. I have made the following changes in red in the theme search.liquid as recommended in one of the forum posts. But instead of hiding the Wholesale product, the retail product is hidden. Any advice would be highly appreciated.

{% for item in search.results %}

{% unless product.tags contains ‘Wholesale’ %}

{% if item.object_type == ‘product’ %}
{%- assign product = item -%}
{% include ‘product-grid-item’ %}
{% else %}

{% endif %}

{% endunless %}

{% endfor %}

Hi @Merim2020 hope this will help, you can try using the codes below. It worked for me. Thank you!

{% for item in search.results %}

{% unless item.tags contains ‘Wholesale’ %}

  • {% if item.object_type == 'product' %} {% include 'product-card-list', product: item %} {% else %}
    {{ item.title }}
    {% unless item.image == null %} {{ item.image.alt | escape }} {% endunless %}
    {{ item.title }}
    {% if item.published_at %}{{ item.published_at | date: format: "date" }} — {% endif %} {{ item.content | strip_html | truncate: 200 }}
    {% endif %}
  • {% endunless %}

    {% endfor %}

    I’ve developed this app that does the job without modifying your theme code: https://apps.shopify.com/hide-from-search

    Hi @Merim2020

    You can add this one below the {% for item in search.results %} line

    {% unless item.tags contains ‘Wholesale’ %}

    {% continue %}

    {% endunless %}

    And that’s all that you need to do. Enjoy it

    1 Like