How to remove bids tabs in product pages
If you want to remove bids tabs in product pages you can use the following code in functions.php of you theme:
if(!function_exists('yith_wcact_bid_tab')) {
function yith_wcact_bid_tab($tabs)
{
unset($tabs['yith-wcact-bid-tab']);
return $tabs;
}
add_filter('yith_wcact_bid_tab', 'yith_wcact_bid_tab');
}