Hi !
A better way to remove the title than the above link would be to add the following lines to your functions.php
add_filter( 'yikes_woocommerce_custom_repeatable_product_tabs_heading', 'remove_yikes_woocommerce_custom_tab_heading' );
function remove_yikes_woocommerce_custom_tab_heading() {
return '';
}
This will properly remove the title from the page instead of hiding it to the browser with “display:none”. It’s more elegant and more SEO friendly.