Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wbcomdev/8fbef7a20b5d580ebdda4061e04a99f6 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/8fbef7a20b5d580ebdda4061e04a99f6 to your computer and use it in GitHub Desktop.
<?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