Кто-нибудь знает, как мне нужно добавить свой скрипт ниже, чтобы перезагрузить. Обновить страницу моей корзины (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;
}