We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Excluding blog posts and pages from in store search

Solved

Excluding blog posts and pages from in store search

ANGELA666
Excursionist
18 0 5

Hi, can anyone advise on how to exclude blog posts from in store search results, as I only want my products to show up when visitors are searching for them. I am using Impulse 2.0

thanks in advance!

POISON ARROW RETRO
https://www.poisonarrow.com.au
Accepted Solutions (2)

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

Go to your Online store > Navigation > Collection and search filters > Shopify Search & Discovery > click Open if you already installed, if you are not, click Install. After you are done, go to Settings of this app then you can select which will appear to store search results 

Screenshot 2024-01-09 at 14.38.26.png

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

You can uninstall the app if it causes any issues.

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 7 (7)

Abdosamer
Shopify Partner
1040 188 225

Hi @ANGELA666 , can you share your search.liquid code?

Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work
ANGELA666
Excursionist
18 0 5

sure!

 

<div class="search-content" data-section-id="{{ section.id }}" data-section-type="collection-grid">
<div class="page-width page-content">
{%- render 'breadcrumbs' -%}

<header class="section-header">
<h1 class="section-header__title">
{{ 'general.search.title' | t }}
</h1>
</header>

{%- render 'predictive-search', context: 'search-page' -%}

{%- if search.performed -%}
<hr class="hr--medium">

<div class="section-header">
{%- if search.results_count == 0 -%}
<p>
{{ 'general.search.no_results_html' | t: terms: search.terms | replace: '*', '' }}
</p>
{%- endif -%}
</div>

{%- if search.results_count != 0 -%}

{%- assign paginate_by = section.settings.per_row | times: section.settings.rows_per_page -%}
{%- paginate search.results by paginate_by -%}

<div id="CollectionAjaxContent" class="grid grid--uniform" data-scroll-to>

<div class="grid__item medium-up--one-fifth grid__item--sidebar">
{%- render 'collection-grid-filters',
collection: search,
enable_sidebar: section.settings.enable_sidebar,
filter_style: section.settings.filter_style,
collapsed: section.settings.collapsed,
enable_color_swatches: section.settings.enable_color_swatches
-%}
</div>

<div class="grid__item medium-up--four-fifths grid__item--content">
{% render 'collection-grid',
collection: search,
items: search.results,
enable_sidebar: section.settings.enable_sidebar,
filter_style: section.settings.filter_style,
enable_sort: true,
enable_collection_count: true,
per_row: section.settings.per_row,
mobile_flush_grid: section.settings.mobile_flush_grid
quick_shop_enable: settings.quick_shop_enable
%}

{%- if paginate.pages > 1 -%}
{%- render 'pagination', paginate: paginate -%}
{%- endif -%}
</div>
</div>

{%- endpaginate -%}

{% endif %}

{%- endif -%}
</div>
</div>

{%- if section.settings.enable_sidebar == false or section.settings.filter_style == 'drawer' -%}
{% comment %}
Override grid styles if sidebar is disabled
{% endcomment %}
<style>
.search-content .grid__item--sidebar { width: 0; }
.search-content .grid__item--content { width: 100%; }
.grid__item--sidebar { position: static; overflow: hidden; }
</style>
{%- endif -%}

{% schema %}
{
"name": "t:sections.main-search.name",
"settings": [
{
"type": "header",
"content": "t:sections.main-search.settings.header_filtering_and_sorting"
},
{
"type": "checkbox",
"id": "enable_sidebar",
"label": "t:sections.main-search.settings.enable_sidebar.label",
"default": true,
"info": "t:sections.main-search.settings.enable_sidebar.info"
},
{
"type": "checkbox",
"id": "collapsed",
"label": "t:sections.main-search.settings.collapsed.label",
"default": true
},
{
"type": "select",
"id": "filter_style",
"label": "t:sections.main-search.settings.filter_style.label",
"default": "sidebar",
"options": [
{
"value": "sidebar",
"label": "t:sections.main-search.settings.filter_style.options.sidebar.label"
},
{
"value": "drawer",
"label": "t:sections.main-search.settings.filter_style.options.drawer.label"
}
]
},
{
"type": "checkbox",
"id": "enable_color_swatches",
"label": "t:sections.main-search.settings.enable_color_swatches.label",
"info": "t:sections.main-search.settings.enable_color_swatches.info"
},
{
"type": "range",
"id": "per_row",
"label": "t:sections.main-search.settings.per_row.label",
"default": 4,
"min": 2,
"max": 5,
"step": 1
},
{
"type": "range",
"id": "rows_per_page",
"label": "t:sections.main-search.settings.rows_per_page.label",
"default": 7,
"min": 3,
"max": 20,
"step": 1
},
{
"type": "checkbox",
"id": "mobile_flush_grid",
"label": "t:sections.main-search.settings.mobile_flush_grid.label",
"default": false
}
]
}
{% endschema %}

 

POISON ARROW RETRO
https://www.poisonarrow.com.au

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

Go to your Online store > Navigation > Collection and search filters > Shopify Search & Discovery > click Open if you already installed, if you are not, click Install. After you are done, go to Settings of this app then you can select which will appear to store search results 

Screenshot 2024-01-09 at 14.38.26.png

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

ANGELA666
Excursionist
18 0 5

thank you so much! I have a filter app that I am using, the shopify one won't mess any of that up will it?

POISON ARROW RETRO
https://www.poisonarrow.com.au
Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

You can uninstall the app if it causes any issues.

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

ANGELA666
Excursionist
18 0 5

I love the app, don't want to uninstall it, so far it all looks ok, thanks for your help!

POISON ARROW RETRO
https://www.poisonarrow.com.au
Dan-From-Ryviu
Shopify Partner
12073 2359 2539

Happy I could help ❤️

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.