Spitting the registration form

Hi,

Does anyone know how to split the registration form into say 3 pages with a continue button at the bottom of each page?

Many thanks

Russell

Quote · 14 Jan 2013

This may not be what you are asking for, you can "spread" the join form "out"

In Admin Panel /Builders/Profile Fields - Fields builder, Join Form

open following fields and set:

- General Info set Join Page=0

- Misc Info set Join Page=1

- Security Image set Join Page=2

 

and so on...

Quote · 14 Jan 2013

That is exactly what I wanted, thank you very much!!!

Quote · 14 Jan 2013

Thanks for the help OKWEB  

Quote · 23 Jan 2013

Don't forget to edit

inc/classes/BxDolProfileFields.php

around line 1398

        // add submit button
           
         $aInputs[] = array(
            'type'    => 'submit',
            'name'    => 'do_submit',
            'value'   => _t( '_Join Complete' ),
            'colspan' => false,
       

        // add submit button
###
#SteveSoft
#04-28-2012
#               
        if( $aHiddenItems['join_page'] != "done" ){           
            $aInputs[] = array(
            'type'    => 'submit',
            'name'    => 'do_submit',
            'value'   => _t( '_Join Next' ),
            'colspan' => false,
        );                   
        }
        else{ $aInputs[] = array(
            'type'    => 'submit',
            'name'    => 'do_submit',
            'value'   => _t( '_Join Complete' ),
            'colspan' => false,
        );
        }

This makes it apparent there's more than 1 page.

This works with 7.0.9, IDK about 7.1

http://www.mytikibar.com
Quote · 23 Jan 2013

 ?

###
#SteveSoft
#04-28-2012
#   

 

Quote · 23 Jan 2013

 

 ?

###
#SteveSoft
#04-28-2012
#   

 

 I tag ALL my code changes with that format.

That way I know where and what date I modified any code.

http://www.mytikibar.com
Quote · 25 Jan 2013

FYI - Yes it works on 7.1

 To clarify, Change this:


// add submit button

        $aInputs[] = array(

            'type' => 'submit',

            'name' => 'do_submit',

            'value' => _t( '_Join now' ),

            'colspan' => false,

        );

To this:

// add submit button
###
#SteveSoft
#04-28-2012
#                
        if( $aHiddenItems['join_page'] != "done" ){            
            $aInputs[] = array(
            'type'    => 'submit',
            'name'    => 'do_submit',
            'value'   => _t( '_Join Next' ),
            'colspan' => false,
        );                    
        }
        else{ $aInputs[] = array(
            'type'    => 'submit',
            'name'    => 'do_submit',
            'value'   => _t( '_Join Complete' ),
            'colspan' => false,
        );
        }

****End****

Rich


This is my signature, there are many like it but this one is mine...
Quote · 12 Mar 2013

Don't forget to add language keys:

_Join Complete ('Submit' or similar)

_Join Next  ('Next >' or similar)

 

Rich

This is my signature, there are many like it but this one is mine...
Quote · 12 Mar 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.