Dawn theme collection h1 problem

Topic summary

A user is experiencing an SEO issue where collection pages display as “Collection: Collection Name” in the H1 tag, with “Collection:” appearing as hidden text that search engines can still read.

The problem stems from a <span class="visually-hidden"> element in the collection liquid template file that contains “Koleksiyon:” (Turkish for “Collection:”).

Initial misunderstanding: The first suggested solution was to hide the entire collection title using CSS, but the user clarified they want to keep the collection name visible—just remove the “Collection:” prefix.

Resolution: Remove the <span class="visually-hidden">Koleksiyon: </span> code from the collection liquid page to eliminate the hidden text that Google indexes while preserving the visible collection name.

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

All of my collections are shown as “Collection: Collection Name” I want to remove that first "Collection: " part from h1. I checked the code and couldn’t find that “Collection :”.

Hello there

You can add this CSS in base.css file to remove collection name.

.collection-hero__title {
    display: none;

}

No I want to show the collection name. But google see my collection name like “Collection: Dried Fruits”

You have to remove Koleksiyon: this code from collection liquid page

Don’t hesitate to drop me a message if you’d like to talk more!

Regards

Titu

1 Like