Hello,
this is a fault of the buttons. I’m also an author of a plugin Qty Increment Buttons for WooCommerce. To make the buttons “really” work, apart from changing the value inside the input field, triggering this change is also required. In my plugin I do so in jQuery fired on the button click, this is the last thing that happens in the button click code (apart from some StoreFront theme exception in the next line):
Find the quantity input field corresponding to the increment button clicked:
var qty = $( this ).siblings( ".quantity" ).find( ".qty" );
Trigger the change in this quantity input field.
qty.trigger("change");
On the linked website, cart totals will get automatically updated when the quantity is increased with buttons AND after this, the input field is clicked – doesn’t need to be changed, clicking is enough to trigger it.
You may either try out my plugin or if You like the design of the current buttons or other reasons – contact theme’s author about this problem, it’s as easy as these 2 lines that I posted (I assume that the buttons are a part of the theme).
Best regards,
Ryszard
-
This reply was modified 4 years, 11 months ago by
taisho.