To Refresh Change product quantity cart block page
Refresh cart block page after changing product quantity.
add_action('wp_footer', function () {
?>
<script>
jQuery(function($) {
$(document).on('click', '.wc-block-components-quantity-selector__button.wc-block-components-quantity-selector__button--plus, .wc-block-components-quantity-selector__button.wc-block-components-quantity-selector__button--minus', function (){
setTimeout(function(){
$(document.body).trigger('added_to_cart', {});
}, 2000);
});
});
</script>
<?php
});