Re: How do I add a few words after the “Sign Up Complete!” message?
The problem with hooking to bp_complete_signup is that it’s not called from within a template, so your code probably echoes above the entire template stuff. You have to find a hook in the template, and there aren’t really any obvious ones. Here’s one thing you might try (untested):
`function postSignup_msg() {
if ( ‘completed-confirmation’ == bp_get_current_signup_step() ) {
echo “blah blah blah”;
}
}
add_action( ‘template_notices’, ‘postSignup_msg’ );`
It’s kind of an abuse of what template_notices is meant to do, but it might work.