• Resolved ugenenoerden

    (@ugenenoerden)


    Hi,

    Thank you for providing a wonderful plugin.

    I have unfortunately been unable to solve the issue of the quantity input on the cart page turning to zero but not removing item. Any help would be greatly appreciated.

    I am using the Avada theme.

    Best Regards,
    Ugene

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author moiseh

    (@moiseh)

    Hello,
    I can’t reproduce this in my end.
    Can you send the shop link?

    Thanks

    Thread Starter ugenenoerden

    (@ugenenoerden)

    Hi @moiseh ,
    The shop link is “noerden.eu”.

    Best Regards,
    Ugene

    Plugin Author moiseh

    (@moiseh)

    I’ve made a workaround to work with your shop remove link (apparently customized in template), it will be released soon in next version.

    If you want to anticipate you can replace the wbulite.js code with this: https://paste.ofcode.org/38bgr4BR3TLksJf7ayQfiXv

    Code changed:

            if ( qtyElement.val() == 0 ) {
                var cartItem = qtyElement.closest('.cart_item');
                var removeLink = cartItem.find('.product-remove a');
    
                if ( !removeLink.length ) {
                    removeLink = cartItem.find('.remove u');
                }
                
                removeLink.trigger('click');
    
                return false;
            }

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Quantity input on cart page changes to zero but does not remove item’ is closed to new replies.