A user seeks to modify the meta title and description specifically for their main collections page (/collections) on Shopify’s Prestige 2.0 theme, without affecting the homepage or individual collection pages.
Proposed Solutions:
• Liquid conditional check: Use {% if template == 'list-collections' %} to target only the collections list page and insert custom meta tags within this condition.
• Theme settings approach: Add a custom field to settings_schema.json that creates a theme settings option for collections meta description. Then modify theme.liquid to conditionally display this custom meta description when on the list-collections template, while preserving page-specific descriptions elsewhere.
Key Technical Notes:
Verify the correct template name in your theme (commonly 'list-collections')
The settings schema solution allows dynamic updates through the theme customizer without editing code repeatedly
One response references a related community discussion with multiple implementation examples
The thread provides code snippets for both approaches but doesn’t confirm which solution the original poster successfully implemented.
Summarized with AI on November 9.
AI used: claude-sonnet-4-5-20250929.
I have searched the forum and found this question asked in several different ways, but never found a solution on any of the threads.
Hi,
I am trying to change the meta title and meta description on my main collections page (Collections) – without changing anything on the homepage or any other collection.