Guest User

Untitled

a guest
Oct 17th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. function gens_raf_customer_email( $order, $sent_to_admin, $plain_text ) {
  3. $user_id = $order->customer_user;
  4. if( ! empty( $user_id ) && ( $code = get_user_meta($user_id, "gens_referral_id", true) ) != '' ){
  5. if( $plain_text ){
  6. echo 'Your referral code is: ' . $code;
  7. } else {
  8. echo '<p>Your referral code is: ' .get_home_url() .'?raf='. $code . '</p>';
  9. }
  10. }
  11. }
  12. add_action('woocommerce_email_customer_details', 'gens_raf_customer_email', 30, 3 );
Add Comment
Please, Sign In to add comment