How to remove all tabs from a single product page.
add_filter( 'woocommerce_product_tabs', 'jkpagency_remove_all_single_product_tabs', 9999, 1 );
function jkpagency_remove_all_single_product_tabs( $tabs ) {
// Removes all single product tabs
$tabs = array();
return $tabs;
}
More to come soon.