Skip to content

Instantly share code, notes, and snippets.

@robertuniqid
Created March 27, 2019 14:40
Show Gist options
  • Save robertuniqid/9fe540d250aae7246e27545b92d2c480 to your computer and use it in GitHub Desktop.
Save robertuniqid/9fe540d250aae7246e27545b92d2c480 to your computer and use it in GitHub Desktop.
WC Clear Cart on Add
<?php
add_filter( 'woocommerce_add_to_cart_validation', function( $cart_item_data ) {
global $woocommerce;
$woocommerce->cart->empty_cart();
return true;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment