Advertisement
designbymerovingi

myCRED: User ID as Referral ID

Dec 1st, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_filter( 'mycred_affiliate_get_ref_id', 'mycred_pro_user_id_affid', 99, 2 );
  2. function mycred_pro_user_id_affid( $ref_id, $user_id ) {
  3.     return $user_id;
  4. }
  5.  
  6. add_filter( 'mycred_affiliate_get_user_id', 'mycred_pro_get_user_id_affid', 99, 2 );
  7. function mycred_pro_get_user_id_affid( $user_id, $ref_id ) {
  8.     return absint( $ref_id );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement