Remove some sorting options (Baseline Theme)

Hello, How do I remove some sorting options for web and mobile? I would like to remove the following:

  • Featured

  • Best Selling

  • A-Z

  • Z-A

  • Date, Old to new

Thank you!

url: http://sunday-reports.myshopify.com/

pw: itssunday

(please do not post any screencaps from my website TY!)

Hi Markit-Themes,

I dont have a sort-by.liquid file, and the two sort files within snippets don’t have a block like this. Thanks!

Hello @HelloB ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.bundle.css file and paste the following code at the bottom:

li:has(input[value="manual"]), li:has(input[value="best-selling"]), li:has(input[value="title-ascending"]), li:has(input[value="title-descending"]), li:has(input[value="created-ascending"]) {
    display: none;
}

Regards
Guleria

Hi @HelloB

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

ul.space-y-1 li:nth-child(7), ul.space-y-1 li:nth-child(2), ul.space-y-1 li:nth-child(1), ul.space-y-1 li:nth-child(4), ul.space-y-1 li:nth-child(3) {
    display: none !important;
}

Result

Best

DaisyVo

Amazing this worked. Thank you so much!