Remove WooCommerce tabs

add_filter( 'woocommerce_product_tabs', 'kpry_woo_remove_product_tabs', 98 );
function kpry_woo_remove_product_tabs( $tabs ) {
    unset( $tabs['description'] );      	// Remove the description tab

    return $tabs;
}