Hi. How can we help?

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');
}
Was this article helpful?
0 out of 2 found this helpful

Back to Help Center >