Hi,
Can you send me a link to your site? This should be possible with some CSS.
Thanks!
I am using the theme: easy store if that makes any difference. Are there any css codes that will hide the category descriptions that are showing up on my sub category pages?
Hi,
Under Customize > Additional CSS, you can add the following code:
.tax-product_cat .term-description {
display:none
}
If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).
Can you link me to a page with a category description that you would like hidden?
https://www.bestlessbay.com/product-category/mens-collection/outerwear/
I have descriptions on all my category and subcategory pages but want them hidden. I am also not sure why they show up twice
Hi,
It’s the way the theme is configured, that’s why it’s there twice. You have areas for this in the header and on the page. I imagine the theme would have a way to disable this.

Link to image: https://cld.wthms.co/B5cIf4
To hide the description in the header please try this.
.taxonomy-description {
display: none;
}
To hide the description in the body of the page you would use this CSS.
.term-description p span {
display: none;
}
Cheers!
Both of those codes worked and my products still show up. Thank you so much!
Also, is there any css code to hide the title “Category: Outerwear” like shown in the image you sent above?