wpgenie

remove items from cart when auction is added

Mar 20th, 2020
804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. // Remove other items from cart when auction product is added to cart
  2. add_filter( 'woocommerce_simple_auction_empty_cart', 'empty_cart_for_auction_payment' );
  3. function empty_cart_for_auction_payment( $variable ) {
  4.     return 1;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment