Skip to content

Instantly share code, notes, and snippets.

@r-a-y
Last active July 23, 2020 06:55
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save r-a-y/5578432 to your computer and use it in GitHub Desktop.
Save r-a-y/5578432 to your computer and use it in GitHub Desktop.
Disable BuddyPress' registration and use WP's instead. Paste this in /wp-content/plugins/bp-custom.php.
/**
* Disables BuddyPress' registration process and fallsback to WordPress' one.
*/
function my_disable_bp_registration() {
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
remove_action( 'bp_screens', 'bp_core_screen_signup' );
}
add_action( 'bp_loaded', 'my_disable_bp_registration' );
@unsalkorkmaz
Copy link

I suggest to add

  add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
    function firmasite_redirect_bp_signup_page($page ){
        return bp_get_root_domain() . '/wp-signup.php'; 
    }

@stray-leone
Copy link

@unsalkorkmaz
the way you suggest doesn't work for me.
when I try with gistfile1.php, it works.
I don't know why your way doesn't work for me.

@stofferd
Copy link

This method no longer appears to work, at least on multisite?

@fabianski7
Copy link

instead of using return bp_get_root_domain() . '/wp-signup.php';

use return bp_get_root_domain() . '/wp-login.php?action=register';

@Hastibe
Copy link

Hastibe commented Jul 23, 2020

Even with the update that @fabianski7 added, this code has no effect on the BuddyPress registration page for me. Any other suggestions or updates?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment