add_filter( 'woocommerce_product_description_heading', 'remove_product_description_heading' );
function remove_product_description_heading() {
return '';
}
Enjoy Code! How to remove "Description" title from product details page
Hello Friends!!
I am here going to share useful knowledge about woocommerce hooks. On product page if you want to remove "Description" title under "Description Tab" without any changes in woocommerce core files then follow given steps. You will just need to add given below code into your theme function.php file.