Dawn Theme Collection page SEO showing filter headers in google

Topic summary

A merchant using Shopify’s Dawn theme reports that Google is indexing collection pages with default collection names as titles instead of optimized SEO titles, and displaying filter names in meta descriptions rather than custom descriptions. This is occurring with the theme’s out-of-the-box configuration during a critical shopping period.

Proposed Solutions:

Code-Level Fixes:

  • Edit collection.liquid or collection.json files to prioritize SEO metafields over default values
  • Update <title> tags to use {{ collection.metafields.seo.title | default: collection.title }}
  • Modify <meta name="description"> to pull from {{ collection.metafields.seo.description | default: collection.description }}

Administrative Steps:

  • Configure custom metafields for SEO titles and descriptions under Settings > Custom Data
  • Manually populate SEO metadata for each collection via the Search Engine Listing Preview section
  • Consider adding noindex directives or canonical tags to filter parameter pages

Verification:

  • Test changes by inspecting page source code
  • Use Google Search Console’s URL Inspection Tool to request re-indexing
  • Validate with Google Rich Results Test

The issue stems from Dawn theme’s default behavior of pulling dynamic content rather than optimized SEO fields.

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

Hi,

We just changed our template to Dawn theme. We are finding a big issue with how Google is spidering the collection pages. It is using the collection name as the html title instead of our optimized SEO title. And more alarming, it is using the filter names in the HTML description instead of our optimized description. This is the default out of the box way that Google is spidering the SEO. We need help fixing this during this important shopping season.

3 Likes

Hey @Antonina1 ,

I get how frustrating this can be, especially during a busy shopping season. Shopify’s Dawn theme handles some SEO elements differently by default, but you can fix this! Here’s a step-by-step guide:

Step 1: Update the Title Tags for Collections- Go to Online Store > Themes in your Shopify admin.

  • Click on Actions > Edit Code for the Dawn theme.
  • In the sidebar, navigate to Sections > collection.liquid or collection.json (depending on your version).
  • Look for the tag. It’s probably pulling {{ collection.title }} by default.

Replace it with something like:
{{ collection.metafields.seo.title | default: collection.title }}

  • This tells Shopify to prioritize your optimized SEO title first.

Step 2: Fix Description Issue1. In the same collection.liquid file, find the tag.

It’s probably pulling filter names or dynamic content. Update it to:

  • This ensures Google will pick up the optimized description from your SEO settings.

Step 3: Add/Edit Metafields for SEO- Go to Settings > Custom Data (Metafields).

  • Under Collections, create metafields for seo.title and seo.description if they don’t already exist.
  • Fill these in for each collection via Products > Collections > Metafields.

Step 4: Test Your Changes- Save your changes and check the page source in your browser (Ctrl+U or Cmd+U) to confirm the updated title and meta description tags.

  • Use Google’s URL Inspection Tool in Search Console to request re-indexing of your pages.

This should solve the issue! Let me know if you need help with any specific step—I’m happy to walk you through it. :blush:

1 Like

Hi @Antonina1

To fix the SEO issue with the Dawn theme collection pages:

1-Update Collection Page Metadata:

  • Go to Shopify Admin > Products > Collections.
  • Select the collection page and scroll to Search Engine Listing Preview.
  • Manually enter your optimized Title and Description, ensuring they are keyword-rich.

2-Edit Dawn Theme Code:

  • Go to Online Store > Themes > Dawn Theme > Edit Code.
  • In the collection.liquid file, locate the and tags.
  • Replace them with code that prioritizes your SEO title and description over default ones:
{{ collection.meta_title | default: collection.title }}

3-Exclude Filter Headers:

  • Check the filter code section in collection.liquid or facets.liquid file.
  • Use a noindex directive for unwanted filter parameters by modifying the tag or using canonical tags:

4-Use Search Console:

  • Submit updated collection URLs to Google Search Console for reindexing.

5-Test SEO Changes:

  • Use tools like Google Rich Results Test to verify the correct metadata is being pulled.

By following these steps, you can resolve the issue and ensure optimized metadata is indexed by Google.

If you have further questions, I am willing to answer.

Regards,
Daisy