Refresh the cart summary in some case the discount applies before add an item to cart
Refresh cart summary after discount applies before adding an item to the cart.
add_action('woocommerce_before_cart', function (){
?>
<script type="text/javascript">
jQuery( document ).ready(function() {
jQuery( window ).load(function() {
jQuery("[name='update_cart']").removeAttr('disabled');
jQuery("[name='update_cart']").trigger("click");
});
});
</script>
<?php
});