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 tutoraspire.com FREE * @sourcecode https://tutoraspire.com/?p=21711 * @author Tutor Aspire * @compatible WooCommerce 3.5.3 * @donate $9 https://www.tutoraspire.com */ add_filter( 'woocommerce_product_description_heading', 'tutoraspire_rename_description_tab_heading' ); function tutoraspire_rename_description_tab_heading() { return 'Product Features'; }