Skip to content

Instantly share code, notes, and snippets.

@goranefbl
Created February 20, 2022 22:39
Show Gist options
  • Select an option

  • Save goranefbl/3cc7221a689544257d59f9591a31e3c5 to your computer and use it in GitHub Desktop.

Select an option

Save goranefbl/3cc7221a689544257d59f9591a31e3c5 to your computer and use it in GitHub Desktop.
allow referrals for registered customers only
<?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