How fix and Collection paga filter: Dawn

Topic summary

A Shopify store owner wants to remove specific sorting filters (Date, Price, A-Z, Z-A) from collection pages while keeping only “Best Selling” and “Manual” options visible on the Dawn theme.

Proposed Solutions:

Three community members offered CSS-based approaches:

  • Method 1: Add custom code to theme.liquid file, placed above the closing </body> tag
  • Method 2: Insert CSS into main.css (or base.css/style.css) targeting the sort dropdown with:
select#SortBy option:not([value="manual"],[value="best-selling"]) {
  display: none;
}
  • Method 3: Similar approach using theme.liquid modification

Key Steps:

  1. Navigate to Online Store > Themes > Edit Code
  2. Locate either theme.liquid or the main CSS file
  3. Add the provided CSS code to hide unwanted filter options
  4. Save changes

All solutions use CSS to selectively hide sorting options while preserving “Best Selling” and “Manual” filters. Screenshots demonstrate the expected before/after results. The discussion remains open without confirmation of which solution was implemented.

Summarized with AI on November 5. AI used: claude-sonnet-4-5-20250929.

Hey @Sohan2198

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


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

Best Regards,
Moeed

1 Like