Skip to content

Instantly share code, notes, and snippets.

@1wdtv
Created August 22, 2018 16:51
Show Gist options
  • Save 1wdtv/202056454331f8029851eeea03478f38 to your computer and use it in GitHub Desktop.
Save 1wdtv/202056454331f8029851eeea03478f38 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_add_to_cart_validation', 'lab_only_one_in_cart', 99, 2 );
function lab_only_one_in_cart( $passed, $added_product_id ) {
wc_empty_cart();
return $passed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment