Advertisement
wpgenie

Lottery remove add to cart check

May 25th, 2020 (edited)
1,439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_action( 'woocommerce_add_to_cart_validation', 'custom_remove_lottery_check', 1);
  2.  
  3. function custom_remove_lottery_check(){
  4.     global $wc_lottery;
  5.     remove_action( 'woocommerce_add_to_cart_validation', array( $wc_lottery->plugin_public , 'add_to_cart_validation' ), 10 );
  6.     return true;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement