/** * Rename description tab label on single product */ // Renames the description tab label on the single product page to an alternative text. // https://www.businessbloomer.com/woocommerce-edit-product-tabs-labels/ add_filter( 'woocommerce_product_description_tab_title', 'cc_rename_description_product_tab_label' ); function cc_rename_description_product_tab_label() { return 'About this product'; }