July 10, 2017 at 06:15
#166866
Kieran_SQ
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
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.