For once, this is a PHP snippet I use on my own website 🙂 In here, I’ll show you how to change the “Description” H2 Heading in the description tab on the single product page. Enjoy!

PHP Snippet: Rename “Description” Heading @ WooCommerce Single Product Tabs
/**
* @snippet Rename "Product Description" @ Single Product Page Tabs - WooCommerce
* @how-to Get CustomizeWoo.com FREE
* @sourcecode https://businessbloomer.com/?p=21711
* @author Rodolfo Melogli
* @compatible WooCommerce 3.5.3
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/
add_filter( 'woocommerce_product_description_heading', 'bbloomer_rename_description_tab_heading' );
function bbloomer_rename_description_tab_heading() {
return 'Product Features';
}