如何在没有页面刷新的情况下从woo-commerce中删除购物车中的产品。现在这次正确删除了产品,但每次都重新加载页面。我想删除产品而不重新加载页面
<?php
echo apply_filters(
'woocommerce_cart_item_remove_link',
sprintf(
'<a href="%s" class="remove" title="%s">×</a>',
esc_url( $woocommerce->cart->get_remove_url( $cart_item_key ) ),
__( 'Remove this item', 'woocommerce' )
),
$cart_item_key
);
?>