Reload cart page after update cart total
Refresh the cart page after updating the total amount.
add_action('wp_footer', function (){
?>
<script type="text/javascript">
jQuery( document ).ready(function() {
jQuery( 'body' ).on( 'updated_cart_totals', function(){
location.reload(true);
});
});
</script>
<?php
});