Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Shopify Community Downtime: The Shopify Community will be down December 5th for 15 minutes between 3pm and 4pm EST. Thank you for your understanding.

Removing Sort Options (Prestige Theme) on Tablet and Mobile

Solved

Removing Sort Options (Prestige Theme) on Tablet and Mobile

the_mudd_shop
Excursionist
18 1 4

I was able to hide all sort options (except for Price Ascending & Price Descending) by adding the following code to the assets/theme.css :

/* Show only the Ascending price and Descending price SORT options */
.Popover__Content {
[data-value="manual"],
[data-value="best-selling"],
[data-value="created-ascending"],
[data-value="created-descending"],
[data-value="title-ascending"],
[data-value="title-descending"] {
display: none !important;
}
}

Screen Shot 2024-11-13 at 12.35.13 PM.png

 

 

 

However, all sort options are still showing on tablet & mobile (see attached screenshot). When I applied the mobile only CSS to the above code it did not work.

@media screen and (min-width: 768px) {
.Popover__Content {
[data-value="manual"],
[data-value="best-selling"],
[data-value="created-ascending"],
[data-value="created-descending"],
[data-value="title-ascending"],
[data-value="title-descending"] {
display: none !important;
}
}
}

Screen Shot 2024-11-13 at 12.35.43 PM.png

 

 

 

Any suggestions or alternative CSS would be very much appreciated.


My client's Shopify URL:  harminharmin.myshopify.com

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9061 2165 2672

This is an accepted solution.

Hi @the_mudd_shop 

Try this one. 

 

@media screen and (max-width: 1007px) {
    .Popover__Content :is([data-value=manual],[data-value=best-selling],[data-value=created-ascending],[data-value=created-descending],[data-value=title-ascending],[data-value=title-descending]) {
        display: none !important;
    }
}

 

And Save. 

Made4uoRibe_0-1731532147548.png

 

 

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
9061 2165 2672

This is an accepted solution.

Hi @the_mudd_shop 

Try this one. 

 

@media screen and (max-width: 1007px) {
    .Popover__Content :is([data-value=manual],[data-value=best-selling],[data-value=created-ascending],[data-value=created-descending],[data-value=title-ascending],[data-value=title-descending]) {
        display: none !important;
    }
}

 

And Save. 

Made4uoRibe_0-1731532147548.png

 

 

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
the_mudd_shop
Excursionist
18 1 4

 

Well, well, well — this is amazing!
At first, it didn’t work when I added your code to the assets/theme.css
However, it worked perfectly when I added it directly to the CSS block within Customize > Theme Settings.
Screen Shot 2024-11-13 at 3.47.47 PM.png

 

Thank you so much @Made4uo-Ribe — your help is truly appreciated!

Made4uo-Ribe
Shopify Partner
9061 2165 2672

Yes, that is another option. If your base.css/theme.css missing or lacking 1 sign the new code youll paste wont work. The custom ccs on the theme editor is also an option but have a limit.

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

Made4uo-Ribe
Shopify Partner
9061 2165 2672

Welcome! Would you mind hitting 'like' as well? Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.