Created
November 15, 2023 19:18
-
-
Save goranefbl/660ad823536400f6f5a2c5a877b9e734 to your computer and use it in GitHub Desktop.
cf7
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 | |
| wpcf7_add_form_tag( 'gens_raf_advance', 'wpcf7_wpgens_form_tag_handler', | |
| array( | |
| 'url-attr' => true | |
| ) | |
| ); | |
| function wpcf7_wpgens_form_tag_handler( $tag ){ | |
| $url = $tag['url']; | |
| $raf_user = new WPGens_RAF_User(get_current_user_id()); | |
| $referralID = $raf_user->get_referral_id(); | |
| $link = $url.'?raf='.$referralID; | |
| return '<input type="hidden" name="gens_raf" value="'.$link.'" />'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment