• Resolved newcampus

    (@newcampus)


    Hello, i tried the Browser Internet-Explorer, Mozilla, Google Chrome, Brave and on no one is it working. I tried it on different Windows and Android system. On no one is it possible to change the quantity in the cart. Mozilla shows the arrows but i can not click them, they have no Funktion. On Google Chrome sometimes the arrows become visible after klicking hundred times in the field. Can you help?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Page elements can take a css style called pointer-events which controls what happens to user mouse clicks on that element. On your page, the quantity input element pointer-events style is set to none, so user mouse clicks are ignored. This style is set by a plugin you have called something like: events-manager-woocommerce-payments-integration

    The style is quite specific, so it looks like the plugin has done this deliberately. To find out why, and what the consequences are for overriding the plugin’s “none” style, you would need to contact the support service for that plugin.

    You can override the style with this custom css:

    body.woocommerce-cart .woocommerce .product-quantity input[type="number"].qty {  	 
      pointer-events: auto !important;
    }
    Laurena Rehbein

    (@lrehbein)

    Automattic Happiness Engineer

    Hi @newcampus,

    I’ve looked at your site and I see that quantity can now be changed in the cart. I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cannot update quantity in cart’ is closed to new replies.