How can I exclude certain filters from my 'More filters' tab?

Screenshot is below.

Looking to exclude certain filters from my filter list here. Wondering if this can be done and how to do it.

URL: https://www.vintagebreaks.com/collections/all-products
Theme: Dawn

Hello @GildedSocial , to hide the filters you can use JavaScript, however, I can help you in an easier way than using CSS.

Find the base.css file then add the following code:

#Facet-3-template--19978860167459__product-grid .list-unstyled.no-js-hidden > :nth-child(your-number) {
  display: none;
}

Change the variable your-number in the code above to the number of the element you want, for example, in the image, you want to hide Bowman, so replace your-number with 3

If you want to hide more filters, paste the other code below and add the number you want.

Hope it helps @GildedSocial