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

Solved

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

lindystark
Tourist
3 0 1

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.

 

Screenshot 2025-02-05 at 12.45.43 PM.png

 

Thanks!

 

Accepted Solution (1)

Asad-Mahmood
Shopify Partner
445 80 91

This is an accepted solution.

Go to your online store -> edit code -> theme.liquid file and before closing body tag </body> paste this below code

{% if template.name == 'collection' %}
<style>
  .rte.cf.align-center.reading-width {
    display: none;
  }
</style>
{% endif %}

 

AsadMahmood_0-1738778581914.png

 

If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




View solution in original post

Replies 4 (4)

Asad-Mahmood
Shopify Partner
445 80 91

This is an accepted solution.

Go to your online store -> edit code -> theme.liquid file and before closing body tag </body> paste this below code

{% if template.name == 'collection' %}
<style>
  .rte.cf.align-center.reading-width {
    display: none;
  }
</style>
{% endif %}

 

AsadMahmood_0-1738778581914.png

 

If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




lindystark
Tourist
3 0 1

Thank you so much! This worked.

NerdCurator
Shopify Partner
440 80 112

@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;
}

 

Believes in delivering optimizing web solutions | Shopify Partner | Working as a web developer for last 10+ years.
- Was my reply helpful? Click Like to let me know! Coffee tips fuel my dedication.
- Was your question answered? Mark it as an Accepted Solution
Email me: info@nerdcurator.com
lindystark
Tourist
3 0 1

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