Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • @cpagan2000

    Participant

    Here you go

    <?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'; 
        }
    ?>

    @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'; 
        }
    ?>

    @cpagan2000

    Participant

    Well this worked lets hope no issues.

    <?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'; 
        }
    ?>

    @cpagan2000

    Participant

    Well Thank You sir gees

    @cpagan2000

    Participant

    It makes no sense do I have to create this file and then paste the code. Because there is no such file. Below is what it says on the link

    Disable BuddyPress’ registration and use WP’s instead. Paste this in /wp-content/plugins/bp-custom.php

    @cpagan2000

    Participant

    No they don’t have to create 2 accounts. What I want is for the god awful registration page to go away and get bacl my normal wordpress login and registration page back. I have social sign ins and want to be able to use those and also a captcha for spam.

    @cpagan2000

    Participant

    I want to use the wp-login.php login and registration page instead of buddypress. How can I do that

    @cpagan2000

    Participant

    That page does not help what so ever

Viewing 8 replies - 1 through 8 (of 8 total)
Skip to toolbar