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;
} );