Change Filter Title in 2.0 Theme (Combine)

Hi, I am trying to change the title of the filter “more filters” to “colors” but none of the solutions I found worked. Can anyone help? Thanks!

Hi @Madeleine4

This is Mike from Omega.

Could you leave here store URL or theme you are using then I can check for you?

Hi Mike, it’s dariadeh.com

Thank you!

Hi @Madeleine4,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css.css

Step 3: Paste the below code at bottom of the file → Save

#FacetFiltersForm details:nth-child(5) span.facets__summary-text{
color:transparent !important;
position:relative
}
#FacetFiltersForm details:nth-child(5) span.facets__summary-text:before{
position:absolute;
inset:0;
content:"Color";
color:black !important
}

Hope my solution works perfectly for you!

Best regards,

Victor | PageFly

@Madeleine4

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file → Save

#FacetFiltersForm details:nth-child(5) span.facets__summary-text{
color:transparent !important;
position:relative
}
#FacetFiltersForm details:nth-child(5) span.facets__summary-text:before{
position:absolute;
inset:0;
content:"Color";
color:black !important
}
.facets__summary {
  display: flex;
}

That worked perfectly, thanks!