Update cart automatic
-
Hello,
Im looking for a way to make the cart update automatic when I change the quantity amount without clicking the update cart button.
I have found some examples of codes to add in function.php but no one works with your cart plugin.
add_action( 'wp_footer', 'cart_update_qty_script' ); function cart_update_qty_script() { if (is_cart()) : ?> <script> jQuery('div.woocommerce').on('change', '.qty', function(){ jQuery("[name='update_cart']").trigger("click"); }); </script> <?php endif; }
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Update cart automatic’ is closed to new replies.