Skip to:
Content
Pages
Categories
Search
Top
Bottom

Registration Form Issue…


  • gokhank
    Participant

    @gokhank

    Hi,

    It should be simple but I need help to solve it urgently. How can I convert back to buddypress registration page to original wordpress registration page?

    I do not want to use only buddypresss registration page, I want to keep the rest but I couldn’t find any way to revert it back to default wordpres version.

    Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)

  • danbp
    Moderator

    @danbp

    Try this (goes to bp-custom.php )

    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' ); 
    function my_redirect_signup_page(){
    	//return wp_registration_url(); 
    	return bp_get_root_domain() . '/wp-signup.php';
    }
    add_filter( 'bp_get_signup_page', 'my_redirect_signup_page' ); 

    gokhank
    Participant

    @gokhank

    thanks mate for the update but when I make this my registration page become blank and still it’s still the same buddypress registration page, does not redirect to default WP registration page.

    Can the template which I use be the reason for this ?


    danbp
    Moderator

    @danbp

    Add the snippet to your child-theme functions.php
    If it doesn’t work from there, remove it and put it into bp-custom.php

    You may also give details about the theme you use and what you did “exactly” on a template.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar