Good day all!
How can I access to edit/add meta description for Shopify Collections (all) page? I searched all over the place and yes, I can access the template, but how do I edit the meta description and title?
Collections – Nectar Flowers Ottawa
https://nectarflowersottawa.ca/collections/
Thank you so much!
Hi @Carpinus ,
This will require updating theme.liquid file. Can you provide me a copy of theme.liquid ?? And also let me know that the new meta title/description?
I was able to add custom meta title/description on the mentioned page https://mangit.myshopify.com/collections/ by editing the template file.
Thank you so much!!!
Could you please share the code for the template file - would love to try it!
Did you managed to fix that issue?
Hi @magdalena_3 @Carpinus ,
This depends on the theme. However you can fllow below steps to get this done. In the theme.liquid file there should be code for meta title and description.
Please replace
{% if page_description %}
{% endif %}
With
{% if request.page_type == 'list-collections' %}
{% else %}
{% if page_description %}
{% endif %}
{% endif %}