valko-pro
9/23/2018 - 6:10 AM

Remove products from the shopping cart before adding the product

Remove products from the shopping cart before adding the product

function woo_custom_add_to_cart($valid, $product_id, $quantity) {
  global $woocommerce;
  $cart = $woocommerce->cart->empty_cart();
  if (!empty($cart) && $valid) { 
    $woocommerce->cart->empty_cart();
    return $valid;
  }
    return $valid;
  }
add_filter('woocommerce_add_to_cart_validation', 'woo_custom_add_to_cart', 10, 3);