在woocommerce中使用ajax从购物车中删除可变产品

我已成功实现此代码,以便使用Ajax从购物车中删除产品。 但它不适用于可变产品。

/** * Remove Cart via Ajax */ function product_remove() { global $wpdb, $woocommerce; session_start(); $cart = WC()->instance()->cart; $id = $_POST['product_id']; $cart_id = $cart->generate_cart_id($id); $cart_item_id = $cart->find_product_in_cart($cart_id); if($cart_item_id){ $cart->set_quantity($cart_item_id,0); } } add_action( 'wp_ajax_product_remove', 'product_remove' ); add_action( 'wp_ajax_nopriv_product_remove', 'product_remove' ); 

也许我需要将$ variation_id传递给$ cart_id,但我不知道该怎么做。

使用$cart_item_key而不是$product_id在购物车上创建链接。

然后,在服务器端,您不需要使用$cart->generate_cart_id($id); 方法,因为你已经拥有它。

查看适合我的示例:

首先,购物车的创建:

 // This is the logic that create the cart foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { ?> 
  • // Remove product link × // Other product info goes here...
  • 现在服务器端的修改:

     /** * Remove Cart via Ajax */ function product_remove() { global $wpdb, $woocommerce; session_start(); $cart = WC()->instance()->cart; $cart_id = $_POST['product_id']; // This info is already the result of generate_cart_id method now /* $cart_id = $cart->generate_cart_id($id); // No need for this! :) */ $cart_item_id = $cart->find_product_in_cart($cart_id); if($cart_item_id){ $cart->set_quantity($cart_item_id,0); } } add_action( 'wp_ajax_product_remove', 'product_remove' ); add_action( 'wp_ajax_nopriv_product_remove', 'product_remove' ); 

    这对我来说很好!