Home / WooCommerce, WordPress / Clear cart before adding a product to cart. Clear cart before adding a product to cart. 37 views Add to funtions.php // Empty cart when product is added to cart, so we can’t have multiple products in cart add_action( ‘woocommerce_add_cart_item_data’, function( $cart_item_data ) { wc_empty_cart(); return $cart_item_data; } );