How can I remove the word “description” and place my own text? Thanks in advance!

How can I remove the word “description” and place my own text? Thanks in advance!

Hi there,
Please install and activate the child theme then add this code in the functions.php file of the child theme:
add_filter( 'woocommerce_product_tabs', 'woo_rename_tab', 98);
function woo_rename_tab($tabs) {
$tabs['description']['title'] = 'The New Text Here';
return $tabs;
}
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.