Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save acodesmith/e3393b190bbafb23518a to your computer and use it in GitHub Desktop.
Save acodesmith/e3393b190bbafb23518a to your computer and use it in GitHub Desktop.
Shopify Search Results - Display different results based on search item
<!-- PAGE RESULT -->
{% if item.url contains '/pages/' %}
<h1>PAGE</h1>
{% endif %}
<!-- BLOG RESULT -->
{% if item.url contains '/blogs/' %}
<h1>BLOG</h1>
{% endif %}
<!-- PRODUCT RESULT -->
{% if item.url contains '/products/' %}
<h1>PRODUCT</h1>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment