Created
February 20, 2022 22:39
-
-
Save goranefbl/3cc7221a689544257d59f9591a31e3c5 to your computer and use it in GitHub Desktop.
allow referrals for registered customers only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter('gens_raf_generate_coupon', 'dont_generate',10,2); | |
| function dont_generate($generate_coupon,$order_id){ | |
| $order = new WC_Order($order_id); | |
| $user = get_user_by('email', $order->billing_email); | |
| if(!isset($user->ID)){ | |
| return false; | |
| } | |
| return true; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment