Archived topic
GP/Woo Product Category Description (or custom HTML via Elements)
9 replies · Started by André on June 23, 2020
GP Premium: 1.10.0
GP theme: 2.4.2
Woo: 4.2.1
Hey guys:
I'm having a hard time trying to figure out how to get GP to display the WooCommerce category meta description on a product category page.
Example (meta description)

... and trying to have it displayed here, for example:
https://tinylittletotems.com/product-category/type/ears/
I've also tried to solve this just via GP > Elements > Hook (and Custom Hook)
But I can't seem to find the correct Hook, or way of having a Custom Hook display an HTML snippet to the product category page.
Appreciate the help.
André
Hi there,
it is being hidden by this Additional CSS:
.tax-product_cat .woocommerce-products-header {
display: none;
}
David, thanks. I've applied that, but the description is still not showing.
https://tinylittletotems.com/product-category/type/ears/
I've flushed cache.
I tried display: none; and display: block; and display: inline;
Still nothing. 😬
What i meant was - you already have the CSS added to your site, you need to remove it.
It is in the Customizer > Additional CSS
My confusion, sorry. I've removed it again (it wasn't in there before). But when I view-source, I see it's still there. So it's not being added through Custom CSS.
Can I overwrite it via the Custom CSS?
I'm still seeing the CSS being added here:
https://www.screencast.com/t/2r6D19QWcme
Leo - so can I, but it's not happening from any custom CSS. Any way I can "force" the display to show - to overwrite via CSS whatever is including that in the CSS?
Try adding this CSS:
.tax-product_cat .woocommerce-products-header {
display: block !important;
}
💥 That did it! .. appreciate the help, David.
Glad we could be of help