如何在没有页面刷新的情况下从woo-commerce中删除购物车中的产品

时间:2015-03-09 05:43:37

标签: jquery ajax wordpress woocommerce

如何在没有页面刷新的情况下从woo-commerce中删除购物车中的产品。现在这次正确删除了产品,但每次都重新加载页面。我想删除产品而不重新加载页面

<?php
    echo apply_filters( 
        'woocommerce_cart_item_remove_link', 
        sprintf( 
            '<a href="%s" class="remove" title="%s">&times;</a>', 
            esc_url( $woocommerce->cart->get_remove_url( $cart_item_key ) ), 
            __( 'Remove this item', 'woocommerce' ) 
        ), 
        $cart_item_key 
    );
?>

0 个答案:

没有答案