Replies: 0
Many themes that display category descriptions for WooCommerce product categories show the following description on the shop page without a way of editing or removing it: “This is where you can add new products to your store.”
I searched extensively but half of the theme authors recommend hiding it with CSS and the other half recommends adding some custom code to the functions.php to remove it, for example:
.woocommerce-page .archive-description {
display: none;
}
Shouldn’t there be an easier and better way to handle this?