Removing "description" text from product page
-
https://prnt.sc/hus42b
I dont want to remove the entire Tab then all the text disappears, but I dont need the title/link.
I have tried both of these methods.
// Remove the Product Description Title
add_filter('woocommerce_product_description_heading', 'hjs_product_description_heading');
function hjs_product_description_heading() {
return '';
}
add_filter('woocommerce_product_description_heading', '__return_null');
neither worked on this theme.
Hi,
You can remove it with the following CSS code
.tabs-layout-tabs .tabs {
display: none!important;
}
Regards