
To change the WooCommerce Single Product Description tab title and heading to the product name, place the following PHP code in your theme’s functions.php file <?php // Change the description tab title to product name add_filter( 'woocommerce_product_tabs', 'wc_change_product_description_tab_title', 10, 1 ); function wc_change_product_description_tab_title( $tabs ) { global $post;...