Remove Part of "Sort By" options on Collection Page

I want to delete part of the sort by options, like:

“Alphabetically, A-Z”
“Alphabetically, Z-A”

“Featured” options"

“Date, old to new”

But I can’t find where to do this in the code.

Very important to me remove it on mobile !

https://www.atiqot.com/collections/living-room

Thanks in advance for any help. Liya


Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->

before the body ----->
if this code work please do not forget to like and mark it solution

Hey @Atiqot

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 tag


RESULT:

If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @Atiqot ,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:
@media screen and (max-width:768px){
.collection-toolbar__button-list > .collection-toolbar__button-container:nth-child(2) {
    display: none !important;
}
}

Let me know if you need further assistance!

Hi @Atiqot

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

height-observer.collection-toolbar.full-bleed {
    display: none;
}

Result

Best,

DaisyVo

Great Solution! It’s work perfect :heart_eyes:

Thanks a Lot Moeed