Collections Page - adding/editing meta description for seo

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 %}