@peter-kuipers
Not recently active
-
Henry replied to the topic [Resolved] Disable 'activate' page in the forum How-to & Troubleshooting 11 years, 4 months ago
Yep, I wrote a function to do redirect users away from it. You can add this to your theme’s functions.php
function bp_redirect_away_from_activate() {
global $bp;if ( bp_is_activation_page() ) {
wp_redirect( $bp->loggedin_user->domain );
exit();
}
}
add_action('wp','bp_redirect_away_from_activate');