Created
October 31, 2017 17:05
-
-
Save ScottDeLuzio/afe20a847d63be65c93c71d92bb03603 to your computer and use it in GitHub Desktop.
Redirect new user registrations from WP-CRM System client area add-on
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
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