Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to disable BuddyPress register page

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try put this code into bp-custom.php or function.php of your theme:

    remove_filter( 'register_url', 'bp_get_signup_page' );

    UPD: this solution doesn’t work.

    This doesn’t work either:

    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );

    Created a ticket: https://buddypress.trac.wordpress.org/ticket/6885

    Found a solution, though:

    function edragonxx_rewrite_slug( $slug ) {
    	return 'wp-login.php?action=register';
    }
    
    add_filter( 'bp_get_signup_slug', 'edragonxx_rewrite_slug' );

    edragonxx
    Participant

    @edragonxx

    Did not work either. Have tried so many different ways to get rid of that buddypress register page and use standard one. This option should be already built in to let users use do they want use buddypress one or do they want use wordpress one. So that login, register, lost password, etc forms would use same page/system and would not be different.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to disable BuddyPress register page’ is closed to new replies.
Skip to toolbar