@daniel84uk i have had to do this myself on one of my sites for my own personal reasons using this snippet of code i came across.
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' );
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';
}
Add this to your bp-custom.php
Hi,
I use buddypress for my site but its login override default wordpress login box. I don’t want it because visitors will have to sign up twice.
Can I retrieve default wordpress login back and use buddypress login in my custom page (I want to put a CTA button in my homepage directing to a login page)?
Please let me know if I have submitted a question in the wrong thread.
Thank you.
Alicia Fritz Herman.
@daniel84uk @mcpeanut I tried that snippet code in the directory suggested but can’t get it to work. I see a missing page error. Do I need to delete the BuddyPress register page. Also does “disable buddypress. wp-login.php?action=register” mean deleting it? In what directory is this found? Thanks for any help.