Product Description Issue

Posted in: Newspaper
Post count: 50

If you add content in the main content editor for a WooCommerce product, the resulting page shows the content in the Description box that theme provides, but the word ‘Description’ appears as a header in the content box. It’s redundant.

How do I remove this?

Post count: 20688

Hi,

If you mean this heading – https://www.screencast.com/t/Sk7fefcZJ
I believe that is added by Woocommerce here – https://www.screencast.com/t/fLAmDLaaGHY
You could edit the plugin and remove it in the files as shown. Or remove the heading with some CSS like this
https://www.screencast.com/t/FV6xAUqEMRVk

.single-product .woocommerce-Tabs-panel h2 {
display: none;
}

Maybe add some margin as well to compensate for the removal of the heading, if you want to
https://www.screencast.com/t/A9i5TB8GTZ

.single-product .product ul.tabs {
margin-bottom: 30px!important;
}

Thanks

Post count: 50

Very nice. Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.