Remove description heading from WooCommerce Single Product Tabs
Important notice: This product is now in maintenance mode and is no longer being actively developed or supported. Updates and bug fixes will not be provided unless they relate to security concerns.
If you want to remove the description heading from Woocommerce single product tabs, add the following code at the bottom of the functions.php file of your child theme.
/** * Remove "Description" Heading Title @ WooCommerce Single Product Tabs */ add_filter( 'woocommerce_product_description_heading', '__return_null' );