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.
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.
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.