• Hello.
    Is possibilities to hide bundle name and price on the cart and order page?
    I want to display only bundled products with price.

Viewing 1 replies (of 1 total)
  • Hi @zachars,

    Please add below snippet (How to add custom code?):

    add_filter( 'woocommerce_order_get_items', 'woosb_exclude_bundles_from_order', 10, 1 );
    function woosb_exclude_bundles_from_order( $items ) {
    	foreach ( $items as $key => $item ) {
    		if ( $item->meta_exists( '_woosb_ids' ) ) {
    			unset( $items[ $key ] );
    		}
    	}
    
    	return $items;
    }

    Regards,

Viewing 1 replies (of 1 total)

The topic ‘Hide bundle on’ is closed to new replies.