Skip to:
Content
Pages
Categories
Search
Top
Bottom

remove registration page

  • @ttemplate

    Participant

    hello
    does anybodey have a clue if how to remove the auto redirect to registration page?
    i want bp use the regular wordpress registration page (wp-login.php?action=register).

    btw, the reason i am doing it is because i am using facebook connect + BuddyPress Facebook Connect, and i cant get to the register page, so if you’re having some other ideas, i’ll be happy to know.

    thanks you guys.

Viewing 4 replies - 1 through 4 (of 4 total)
  • @karmatosed

    Moderator

    @cpagan2000

    Participant

    That page does not help what so ever

    @ruypoa

    Blocked

    Na Net você tem mais vantagens, o Net Combo proporciona Net Tv, Net HD e Internet de alta velocidade, e ainda tem o telefone, acesse e conheça, Net

    @cpagan2000

    Participant

    This has worked for me

    <?php
    // hacks and mods will go here
    /**
     * 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' );
    
    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'; 
        }
    ?>
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove registration page’ is closed to new replies.
Skip to toolbar