July 10, 2017 at 06:15
#166866
Moderator
Hi @Grant,
Please try adding this to your child theme’s functions.php file
COPY CODE
// Do page redirect if just activated
function seventh_queen_redirect_if_user_just_activated() {
if ( bp_account_was_activated() ) {
wp_redirect( home_url( '/thispage/' ) );
exit();
}
}
add_action( 'template_redirect', 'seventh_queen_redirect_if_user_just_activated' );
Replace /thispage/ with your own page
Let me know if this works for you,
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution