有人知道我需要在下面添加我的脚本来重新加载。刷新我的购物车页面(https://mysite.com.au/cart/)吗?
//Calculate shipping after item qty has changed in cart
add_action( 'wp_footer', 'cart_refresh_update_qty');
function cart_refresh_update_qty() {
if (is_cart()) :
?>
<script type="text/javascript">
jQuery( function($){
$(document.body).on('click', 'input[name="update_cart"]', function(){
//alert('Cart Qty Changed, Shipping total will be updated - Update Button.');
jQuery("[name='calc_shipping']").trigger("click");
});
});
</script>
<script type="text/javascript">
jQuery( function($){
$(".remove").on('click', function(){
//alert('Cart Qty Changed, Shipping total will be updated - Remove x.');
jQuery("[name='calc_shipping']").trigger("click");
});
});
</script>
<?php
endif;
}