Skip to content

Instantly share code, notes, and snippets.

@ScottDeLuzio
Created October 31, 2017 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScottDeLuzio/afe20a847d63be65c93c71d92bb03603 to your computer and use it in GitHub Desktop.
Save ScottDeLuzio/afe20a847d63be65c93c71d92bb03603 to your computer and use it in GitHub Desktop.
Redirect new user registrations from WP-CRM System client area add-on
add_filter( 'wpcrm_system_client_area_registration_redirect', 'my_url_redirect' );
function my_url_redirect( $url ){
$url = 'https://google.com';
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment