How to hide "filter and sort - 0 products" on mobile interface?

Solved

How to hide "filter and sort - 0 products" on mobile interface?

tipitea
Tourist
15 0 11

 

I'm using the code below:
<style>
facet-filters-form.facets.small-hide {
display: none !important;
}
</style>

 

to hide the "Sort by:" section on the desktop interface but the mobile interface still shows like this? Is there a way to hide the element I circled in red below?

mobile.png

 

 

Accepted Solution (1)

Moeed
Shopify Partner
5432 1470 1756

This is an accepted solution.

Hey @tipitea 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.facets-container.scroll-trigger.animate--fade-in {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1727452293449.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 3 (3)

Moeed
Shopify Partner
5432 1470 1756

This is an accepted solution.

Hey @tipitea 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.facets-container.scroll-trigger.animate--fade-in {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1727452293449.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


tipitea
Tourist
15 0 11

thanks for your support but for a newbie like me you work like a robot 🤖

Moeed
Shopify Partner
5432 1470 1756

Thank you for your reply. I'm glad to hear that the solution worked well for you. If you require any more help, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications