Title: Hide bundle on
Last modified: October 7, 2021

---

# Hide bundle on

 *  [zachars](https://wordpress.org/support/users/zachars/)
 * (@zachars)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/hide-bundle-on/)
 * 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)

 *  [miemie](https://wordpress.org/support/users/miemie/)
 * (@miemie)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/hide-bundle-on/#post-14949623)
 * Hi [@zachars](https://wordpress.org/support/users/zachars/),
 * Please add below snippet ([How to add custom code?](https://wpclever.net/faqs/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.

 * ![](https://ps.w.org/woo-product-bundle/assets/icon-128x128.png?rev=1857793)
 * [WPC Product Bundles for WooCommerce](https://wordpress.org/plugins/woo-product-bundle/)
 * [Support Threads](https://wordpress.org/support/plugin/woo-product-bundle/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-product-bundle/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-product-bundle/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-product-bundle/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [miemie](https://wordpress.org/support/users/miemie/)
 * Last activity: [4 years, 8 months ago](https://wordpress.org/support/topic/hide-bundle-on/#post-14949623)
 * Status: not resolved