Remove tags from search bar

Solved

Remove tags from search bar

rj1984
Tourist
13 0 1

Hi, here is the site I'm working on- https://xshaneli.com/

 

When you click on the magnifying glass at the top left, it opens the search panel. In this panel, you will see All Tags drop down menu. How can I remove this All Tags menu from the search panel?

 

Thanks.

 

Screenshot 2024-04-14 at 4.54.56 PM.png

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2139 616 520

This is an accepted solution.

Hey @rj1984,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
.select__field_form,
select#search-filter {
    display: none !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1713140112516.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 2 (2)

ThePrimeWeb
Shopify Partner
2139 616 520

This is an accepted solution.

Hey @rj1984,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
.select__field_form,
select#search-filter {
    display: none !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1713140112516.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
rj1984
Tourist
13 0 1

Wonderful. Thank you!