Tuesday 17 January 2023

Cart automatic update in wordpress, when quantity change.

 add_action( 'wp_footer', 'wv_cart_refresh_update_qty' ); 


function wv_cart_refresh_update_qty() {

    if (is_cart()) {

        ?>

        <script type="text/javascript">

         jQuery('div.woocommerce').on('change', 'input.qty', function(){

            setTimeout(function() {

                jQuery('[name="update_cart"]').trigger('click');

            }, 100 );

        });

        </script>

        <?php

    }

}

No comments:

Post a Comment