I need help removing these two search filters from our collections page: Availability and Price. On the Studio theme, I cannot find any way to manually edit the filters, so it likely required custom code, which I am no expert in. Please assist!
Hi, can you share store url?
- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file component-facets.css and add this code at the end of the file
div#FacetsWrapperDesktop {
display: none !important;
}
Hi @AnnaHovet
Try this,
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
form#FacetFiltersForm .facets__disclosure {
display: none;
}
- And Save.
- Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

