Im not sure what you mean when you say “product tab id”
I have already created a function.php folder in my child theme and have put
the code you told me to put in ..
<?php
add_filter( ‘woocommerce_product_tabs’, ‘woo_rename_tabs’, 98 );
function woo_rename_tabs( $tabs ) {
$tabs[‘description’][‘title’] = __( ‘Available tweeds’ ); // Rename the
return $tabs;
}
?>
I haven’t seen any change to my product “description” tab yet