Comments 1Jane started the conversationAugust 22, 2024 at 2:36pmHi,I would like to display "bought together products" only on single product and checkout cart page but hide on mini cart, any way to do it?Regards, Jane 1,222Dustin repliedAugust 23, 2024 at 3:41amHi Jane,To hide FBT products on a mini cart, please add the custom code below. (How to add custom code? ↗): add_filter( 'woocommerce_widget_cart_item_visible', function ( $visible, $cart_item ) { if ( isset( $cart_item['woobt_parent_id'] ) ) { return false; } return $visible; }, 10, 2 );Best regards,Dustin1 Like Sign in to reply ...
Hi,
I would like to display "bought together products" only on single product and checkout cart page but hide on mini cart, any way to do it?
Regards, Jane
Hi Jane,
To hide FBT products on a mini cart, please add the custom code below. (How to add custom code? ↗):
Best regards,
Dustin