How to add Meta Description on All Collections Page

Topic summary

A user seeks to add a unique meta description to their Shopify store’s /collections page to resolve a duplicate meta description issue with the homepage.

Problem:

  • The collections overview page shares the same meta description as the homepage, creating an SEO issue
  • Solutions suggested by ChatGPT were unsuccessful

Solution Found:
The user resolved the issue by adding conditional code to their theme (Elle theme) that checks if the current page is the collections page and applies a custom meta description accordingly.

The code snippet appears reversed/encoded in the original post but implements a conditional check for the /collections/ path to insert a specific meta description tag.

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

Hello,

I want add meta description on my collection/all page: https://www.picobricks.com/collections

This is important because this page duplicate meta description issue with home page.

Chat GPT’s solutions not working.

Please help! Thank you.

Edit: I use Ella Theme.

Edit: I solved with this code: {% if request.path == ‘/collections’ %}

{% elsif page_description %}

{% endif %}