Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #3439393
Hiding Bundle Name on Backend's Order Details
Closed

Comments

  •  1
    Ke Yee started the conversation

    Hi I would like the bundle name to not appear in my order details but do so in cart and checkout page, because it's interfering with my warehousing. So I would only like the section highlighted in purple to be shown only. 
    Image Link

  •  767
    Janilyn replied

    Hi Yap,

    Thanks for contacting WPClever Support Forum. We're not available at the weekends so today (Monday) I am able to process your ticket.

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  1
    Ke Yee replied

    Hi is there any updates on this? 

  •  1,226
    Dustin replied

    Hi Yap,

    Please add the below custom code (How to add custom code?) to hide the main bundle product:

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

    Best regards,
    Dustin

  •   Ke Yee replied privately
  •  1,226
    Dustin replied

    Please ensure that you're using the latest version 7.2.8 of our plugin and choose "No" for this option https://app.screencast.com/orryFkAjMfrBZ

    Best regards,
    Dustin

  •  1
    Ke Yee replied

    Alright thank you so much!