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
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 |
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
and so on... |
That is exactly what I wanted, thank you very much!!! |
Thanks for the help OKWEB |
Don't forget to edit inc/classes/BxDolProfileFields.php around line 1398 // add submit button // add submit button This makes it apparent there's more than 1 page. This works with 7.0.9, IDK about 7.1 http://www.mytikibar.com |
? ###
#SteveSoft #04-28-2012 #
|
? ###
#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 |
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 ****End**** Rich This is my signature, there are many like it but this one is mine... |
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... |