Hello,
How do I remove this search bar and search link in the turbo theme? All the way on the right hand side
![]()
EDIT: I disabled the search in the theme settings but the search page link still stays in the header. How can I remove it completely?
![]()
A user wants to completely remove all search functionality from their Shopify store using the Turbo theme. They successfully disabled the search bar through theme settings, but the search page link remains visible in the header.
Current Issue:
Proposed Solution:
Another user suggests locating and modifying the code snippet that controls the search link display:
{% if settings.enable_search %}
<li class="search-link">
<a href="{{ routes.search_url }}">{{ 'general.search.title' | t }}</a>
</li>
{% endif %}
This would require editing the theme’s header template to remove or comment out the search link code. The discussion remains open as the original poster has not confirmed whether this solution resolved their issue.
Hello,
How do I remove this search bar and search link in the turbo theme? All the way on the right hand side
![]()
EDIT: I disabled the search in the theme settings but the search page link still stays in the header. How can I remove it completely?
![]()
I want to completely remove all search functionality and links. So completely remove it from the header and anywhere else it appears
Hello. @alexlomt1
You can remove the search bar and its link via the Theme settings.
Navigate to the Header Settings from the theme’s customization button, look for a Search Bar option and disable it.
If the theme’s settings doesn’t allow the removal, kindly edit with this code;
{% if settings.enable_search %}