• Resolved vantagekart

    (@vantagekart)


    When a customer purchases a bundle that includes Product A (valued at $100) and Product B (offered at a discounted price of $1), they can add the bundle to their cart successfully. However, the problem arises when customers are able to remove Product A from the cart. After doing so, they can proceed to checkout for only Product B at the $1 price.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Emily Wilson

    (@emilywil)

    Hello @vantagekart

    Thank you for choosing our plugin.

    We apologize for the inconvenience.

    Actually, remove items from the cart is locked and users can’t remove bundle items in the cart. You can try it on our demo website.

    Maybe you are using a custom cart plugin or your theme has a custom cart that doesn’t support WooCommerce hooks. We used the woocommerce_cart_item_remove_link hook to lock the remove button for the bundle items and maybe your cart doesn’t support it.

    You should contact your cart developer regarding it. The cart module can be loaded from your theme or a third party plugin.

    I hope it helps.

    Best Regards

    Thread Starter vantagekart

    (@vantagekart)

    Hi Emily Wilson,

    Thank you for your quick response. We’re currently facing difficulties specifically with your plugin. While the other plugins are working fine, we need the functionality where one product is offered at full price and another at $1.

    We are using porto theme for woo commerce which is best seller for E-commerce website .

    And using Side Cart WooCommerce by XootiX.

    Please help to resolve issue.

    Thanks

    Plugin Support Emily Wilson

    (@emilywil)

    It is an issue with your side cart plugin that doesn’t support WooCommerce built in hooks.

    You can add the below function to your child theme functions.php

    function asnp_xoo_wsc_product_args( $args, $_product, $cart_item ) {
    if ( isset( $cart_item['asnp_wepb_parent_id'] ) ) {
    $args['showPdel'] = false;
    }

    return $args;
    }
    add_filter( 'xoo_wsc_product_args', 'asnp_xoo_wsc_product_args', 99, 3 );

    I hope it helps.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.