Created
June 23, 2021 13:45
-
-
Save wbcomdev/8fbef7a20b5d580ebdda4061e04a99f6 to your computer and use it in GitHub Desktop.
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 | |
| /** | |
| * User redirect to after signup successful. | |
| */ | |
| function wbcom_redirect_after_signup() { | |
| $page = 'signup-successful';// Enter page slug here. | |
| bp_core_redirect( site_url( $page ) ); | |
| } | |
| add_action( 'bp_complete_signup', 'wbcom_redirect_after_signup' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment