Hi, How do I remove the header “Description” from the woocommerce single product pages? I still want the description section but not the default header. How do I remove just the header?

I would like to remove the generic description that is on every product page. Please help.

Hi @hjenkinsii,

Thank you for reaching out to us. You can disable the Description Tab and other Tabs via Theme Options > WooCommerce > Single Product (see screenshot)

Please note this would remove the entire tabs, there is no option to change or remove the title only, this could be possible by using custom CSS that requires custom development. While that is outside the scope of support, I could point you in the right direction with the understanding that it would ultimately be your responsibility to take it from here. To achieve your desired results, you can add the following code in the Theme Options > CSS:

.x-tab-content>.x-tab-pane.description_pane h2 {
    display: none;
}

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Hope this helps!

Thanks. The custom CSS code worked.

Hi @hjenkinsii,

You’re welcome and we’re glad it’s working on your end. If you have any other concerns, feel free to reach us.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.