How to remove the collection description from collection pages in symmetry theme?

Hi there! I am trying to remove the collection descriptions from my collection pages which I have added to help with SEO. I have tried a few other suggested fixes, but none of them worked for me. I am using the symmetry theme.

Here’s a link to my website: https://lindystark.com/collections/blankets

The red box on this screenshot shows what I’m trying to remove. It’s on multiple pages, not just this one.

Thanks!

Go to your online store → edit code → theme.liquid file and before closing body tag paste this below code

{% if template.name == 'collection' %}

{% endif %}

@lindystark You need to add this code in the theme files. For which you need to go to Online Store > Actions (Active theme) > Edit Code > Assets, under assets add the code at the bottom of styles.css file.

.page-header{
display: none;
}

Thank you so much! This worked.

1 Like

Unfortunately this one didn’t work for me, but the other response did. Thanks for your help!