Redirect Affiliates to a Custom Page After Registration
You can use the “affiliate registration complete” action hook to redirect affiliates to a page after they submit the signup form.
The following is an example snippet of code that shows you how to use this action hook. You can add it to your theme’s functions.php file or your custom plugin.
add_action ('wp_aff_registration_complete', 'custom_affiliate_redirection'); function custom_affiliate_redirection() { //TODO - The affiliate registration is complete, do the redirection. $url = 'www.example.com/custom-page-for-affiliates';//Your redirection page URL header('Location: ' . $url); }