Remove Tab Vendor in single product page
If you want remove Tab Vendor in single product page you could with this provided code.
Insert this in functions.php in your theme:
_____________________________________________________________
if( function_exists('YITH_Vendors') ){
add_action( 'init', 'yith_wcmv_remove_vendor_tab', 20 );
function yith_wcmv_remove_vendor_tab(){
remove_filter( 'woocommerce_product_tabs', array( YITH_Vendors()->frontend, 'add_product_vendor_tab' ) );
}
}
_____________________________________________________________