Last active
July 23, 2020 06:55
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Even with the update that @fabianski7 added, this code has no effect on the BuddyPress registration page for me. Any other suggestions or updates?