Hello,
When I search for a key word in my search bar on shopify, too many results appear. How can I make it so fewer results are displayed? Could someone advise on this issue?
Issue: Shopify search bar shows too many results; requester wants fewer displayed on their storefront.
Context: Theme is “Install-me-martify v-2.0.0.” No built-in setting found to limit search results. Store URL shared (sovel.ro). Screenshots were included to show the issue and theme settings.
Proposed approaches:
Outcome: The requester adopted the CSS workaround for now. This improves usability by adding a scrollable container but does not reduce the actual number of results rendered.
Status: Partially resolved. To truly limit the count of displayed results, a JavaScript modification is still needed; no native theme setting was identified.
Hello,
When I search for a key word in my search bar on shopify, too many results appear. How can I make it so fewer results are displayed? Could someone advise on this issue?
@Sovel Please check your theme settings for the search bar. You might find some options to display how many results.
if not there, then might be a need to update some code in theme.
the URL is sovel.ro
Hello @Sovel
Thanks for the URL but the limit needs to changed from JS. Thus the JS code needs to be altered. If possible to provide collaborator access then please let me know.
Thanks
@Sovel , Please add the below line of CSS at the end of your styles.css file.
body .search-results{
overflow-y:auto;
}
Thank you very much! I will go with this solution for now. cheers a lot!