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