使用这个问题Refresh the page after product remove from cart Woocommerce,我在我的网站顶部添加了以下代码,以在删除产品但不起作用时刷新WooCommerce购物车页面。我需要刷新页面,因为我有一个自定义的产品图片,除非刷新购物车页面,否则删除后它会合并到下面的产品中。
<script>
jQuery('body').on('updated_cart_totals',function() {
jQuery( '.shop_table.cart' ).closest( 'form' ).find( 'input[name="update_cart"]' ).prop( 'disabled', false ); // this will enable the button.
//location.reload(); // uncomment this line to refresh the page.
});
</script>