Re: New Users Not Creating
Add this to your functions.php. It’s written by Detective.
function rk_signup_redirect() {
if (strpos($_SERVER['REQUEST_URI'], 'wp-signup.php') !== false ) {
$url = 'http://domain.ext/register';
wp_redirect($url);
exit;
}
}
add_action('init', 'rk_signup_redirect');
Change $url = ‘http://domain.ext/register’; into your own domain.
This’ll automatically redirect from the old signup page to the new buddypress signup page.