Hi everyone!
We would like to remove the filter New to old within the product search on our website. Can anyone help me with that? We are using Impulse theme. Thank you very much in advance!
Laura
ingridemil.ch
Hi everyone!
We would like to remove the filter New to old within the product search on our website. Can anyone help me with that? We are using Impulse theme. Thank you very much in advance!
Laura
ingridemil.ch
Hello @Fiammetta
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @Fiammetta
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> partials ---->forms.css
add this code at the end of the file.
option:nth-child(9) {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @Fiammetta
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.collection-filter select option:nth-child(9) {
display: none;
}
And Save.
result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!