我已成功实现此代码,以便使用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,但我不知道该怎么做。
答案 0 :(得分:3)
使用$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 ) { ?>
<li class="<?php echo esc_attr( apply_filters( 'woocommerce_mini_cart_item_class', 'mini_cart_item', $cart_item, $cart_item_key ) ); ?>">
// Remove product link
<a href="#" onclick="return js_that_call_your_ajax(this);" data-product_id="<?php echo esc_attr( $cart_item_key ); ?>">×</a>
// Other product info goes here...
</li>
<?php }
现在服务器端的修改:
/**
* 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' );
这对我来说很好用!