(SOLVED) Meta Description not existing Collection All

Topic summary

Issue: Meta description for the Shopify “Collection All” page (/collections) kept triggering SEO warnings in Morningscore (either “Meta description too short” or “Missing Meta Description”). Two Liquid approaches in theme.liquid were tested: (1) conditional on request.path == ‘/collections’ with fallback to page_description, and (2) conditional on template == ‘collection’. Each approach cleared one warning but caused the other.

Key details: The conditions involved Liquid variables (request.path, template, page_description). Adjusting them toggled Morningscore’s errors rather than resolving the underlying meta data for the “All” collection.

Resolution: Created a new Collection that includes all products (price > $0), enabling use of the collection’s built‑in SEO fields. Added a proper meta description and adjusted the title tag length there.

Outcome/Status: Problem solved; Morningscore warnings cleared. No remaining open questions or actions.

Summarized with AI on January 13. AI used: gpt-5.

Hello,

I have currently tried two different solutions, and the problem is that when i use one solution, it creates a new one in my SEO tool (Morningscore).

So I am currently using the following in ‘‘theme.liquid’’

{% if request.path == ‘/collections’ %}> > {% elsif page_description %}> > {% endif %}

When I am using the code mentioned above, it will go from giving an error on ‘‘Meta description too short’’ (this clears out) to giving a low page score due to missing meta description.

When i used the following code, it was giving me an error on ‘‘Meta description too short’’ while clearing the ‘‘Missing Meta Description’’.

{% if template == ‘collection’ %}> > > {% else %}> {% endif %}

Do you have any recommendations?

My url is www.bachsbilpleje.shop

Edit I solved the issue, by creating a new Collection page, that includes all products that has a great value than 0$, where i could easily give a meta description and change the length of the title tag too.