• Resolved Daniel

    (@april_fool)


    It would be great if the cart would show the bundle name but would only add the bundles products to the order after checkout.

    So show this in cart: https://prnt.sc/p2o9is

    But show this without the bundle in the order page: https://prnt.sc/p2ocaz
    Get rid of the crossed out bit.

    Thanks

    • This topic was modified 5 years, 6 months ago by Daniel.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WPClever

    (@wpclever)

    Hi @april_fool ,

    Thanks for your suggestion, but currently this function is not allowed by this plugin. I’ll hand your suggestion over to our developers so that they can see if it’s appropriate to add this in. Kindly note that the decision is up to OUR DEVELOPERS, therefore there might be no change concerning this if our developers refuse. I’ll keep you informed if we release a new update with this feature.

    Thank you for using our plugin. Please continue to support us. Rate our plugin with a full five stars and give us some review. We’ll appreciate that. Thank you and hope you’ll be doing well.

    Regards.

    Thread Starter Daniel

    (@april_fool)

    Thank you, would be great to include as I cannot use the plugin without it ??

    Thread Starter Daniel

    (@april_fool)

    Hi, I hope this is okay to share. I received an update by request. This will fix it for anyone wanting the same as me:

    by adding below function to current-theme/functions.php (or child-theme/functions.php)

    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;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Not show Bundle in Cart, only the variable products’ is closed to new replies.