Title: Order Table
Last modified: June 30, 2021

---

# Order Table

 *  Resolved [amgdre](https://wordpress.org/support/users/amgdre/)
 * (@amgdre)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/order-table-2/)
 * Hello!
 * I have saw in documentation that I can remove bundled product list (and display
   only the main title) on mini cart, cart and checkout. And set a manual price 
   for that kit. Is that correct?
    Is that possible to also hide the bundled list
   on email order table too? And on order screen? I’d like to display only the main
   title and the manual price for the bundle.
 * Thanks a lot!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [miemie](https://wordpress.org/support/users/miemie/)
 * (@miemie)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/order-table-2/#post-14626844)
 * Hi [@amgdre](https://wordpress.org/support/users/amgdre/),
 * We’re very sorry for late responces.
 * Yes, you can hide bundled product list on mini cart, cart and checkout by setting
   in the backend of WPC Product Bundles. [https://prnt.sc/18q4ox3](https://prnt.sc/18q4ox3)
 * You can try to add below snippet to current-theme (or child-theme) / functions.
   php if you would like to exclude bundled products list from the order:
 *     ```
       add_filter( 'woocommerce_order_get_items', 'woosb_exclude_bundled_from_order', 10, 1 );
       function woosb_exclude_bundled_from_order( $items ) {
       	foreach ( $items as $key => $item ) {
       		if ( $item->meta_exists( '_woosb_parent_id' ) ) {
       			unset( $items[ $key ] );
       		}
       	}
   
       	return $items;
       }
       ```
   
 * Regards,
 *  [fakasmile](https://wordpress.org/support/users/fakasmile/)
 * (@fakasmile)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/order-table-2/#post-14629253)
 * tnhks
 *  Thread Starter [amgdre](https://wordpress.org/support/users/amgdre/)
 * (@amgdre)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/order-table-2/#post-14629263)
 * Thanks a lot!! 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Order Table’ 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/)

 * 3 replies
 * 3 participants
 * Last reply from: [amgdre](https://wordpress.org/support/users/amgdre/)
 * Last activity: [4 years, 11 months ago](https://wordpress.org/support/topic/order-table-2/#post-14629263)
 * Status: resolved