Hi
How can I hide the tab “Additional Information” on the WooCommerce product page?
The code that worked in Flashlight (custom.css) no longer works in Enfold (style.css).In Enfold this seems no longer to work.
Second problem:
How can I remove the title “Description” within the tab “Description” on the WooCommerce product page (the tab’s name does not need repeating in the text)
Thanks
Bruno
PROBLEM SOLVED
/*————————*/
/* Prodoct detail page: hide title “Description” */
/*————————*/
.woocommerce-tabs #tab-description h2 {
display: none !important;
}
/*————————*/
/* Product detail page: hide tab “Additional Information” */
/*————————*/
.additional_information_tab {
display: none !important;
}