Remove all single product tabs

Start

add_filter( 'woocommerce_product_tabs', 'jkpagency_remove_single_product_tab', 9999, 1 );

function jkpagency_remove_single_product_tab( $tabs ) {
    // Removes all single product tabs
    $tabs = array();
    return $tabs;
}

end