I have a store using the Taste theme and would like to add a meta description to the collections/all page. How can I do that?
This can’t be changed via the Shopify backend, however with a little custom code you can add your own title and description.
In Theme.liquid you will find the following code near the top of the page
{% if page_description %}
{% endif %}
Please replace it with the new code below
{% if canonical_url == 'https://store-name.myshopify.com/collections' %}
{% else %}
{% if page_description %}
{% endif %}
{% endif %}
You will need to add your collection page URL in place of https://your-store-name.myshopify.com/collections and then change the Custom Title Here and Custom Description Here text to whatever you need.
Hope this helps
Simon