add_action('woocommerce_add_to_cart', 'empty_cart_on_add');
function empty_cart_on_add() {
    WC()->cart->empty_cart();
}