It is definitely possible, and there are two ways in which you can do it.
Method 1 – Filter:
There is a filter we provide: yikes_woocommerce_custom_repeatable_product_tabs_heading
And here is an example of how to use it:
add_filter( 'yikes_woocommerce_custom_repeatable_product_tabs_heading', 'yikes_woo_remove_product_tab_header', 10, 2 );
function yikes_woo_remove_product_tab_header( $tab_title_html, $tab ) {
return '';
}
In the above example, I’m removing the tab title for all of my tabs. If you’d like to scope it to specific tabs, we can do that to – let me know.
Method 2 – CSS:
You could also add your own custom CSS that will simply hide the title from the page. If you’re familiar with adding custom CSS, you may prefer this option.
This is the CSS that will hide all of the tab titles:
.yikes-custom-woo-tab-title {
display: none;
}
And this is the CSS that will hide that specific tab’s title:
.yikes-custom-woo-tab-title-iade {
display: none;
}
Let me know if you need help applying one of these methods.