Helping you Build Your Own Social Network!

Faster, better and easier!

move registration to index page

(5 posts) (2 voices)

Tags:

No tags yet.


  1. Hi Brajesh,

    I want to move the registration page to the index page (like LinkedIn or Facebook).

    I copied the registration form (request-details signup step) from the register.php.

    When I hit the submit button nothing happens. What needs to be done to fix this?

    Posted 1 year ago #
  2. Pleas make sure you have correctly put the action url in the form ?

    the form tag should look like this

    <form action="<?php echo bp_get_root_domain().'/'.BP_REGISTER_SLUG;?>" name="signup_form" id="signup_form" class="standard-form" method="post" enctype="multipart/form-data">

    `

    Posted 1 year ago #
  3. Hi @Brajesh,

    digging up their thread to get more detail from a question asked long back.

    for Bp 1.5.5, when i copy the register page to index page the Profile detail fields from x-profile groups do not appear. This check does nto seem to be working on the index page --

    if ( bp_has_profile( 'profile_group_id=1' ) )

    please can to tell if i missed something?

    thanks

    Posted 2 days ago #
  4. hi Gwu,
    Please make sure to put these lines before the form.

    <?php
    global $bp;
    if(empty($bp->signup->step))
         $bp->signup->step='request-details';
    ?>

    That will make it show the form.

    Posted 1 day ago #
  5. thanks @brajesh - did not work. not sure what is that i m missing

    Posted 15 hours ago #

Reply

You must log in to post.