PDA

View Full Version : user account and business account on forum


DreadsUK
03-02-2014, 10:56 AM
Is it possible to have two separate registration forms that users can choose between when signing up. Either

User or Business

and to create different profile fields and information

Thanks

DreadsUK
03-07-2014, 09:44 AM
still unsure on this..

tbworld
03-07-2014, 10:53 AM
The problem is that you are really not asking a programming question, your just asking if it is possible.
It is easily possible, with a slight bit of programming.

Maybe you are asking if there is away to do this without programming knowledge?

Not sure how to assist you. Open ended questions like this are hard to reply to, which is why you have not received any real feedback. :)

AndrewSimm
03-10-2014, 12:34 AM
Hmm what you need to do is have them in separate user groups.

This mod will let them choose when they register
https://vborg.vbsupport.ru/showthread.php?t=287591&highlight=PB+Usergroup+Choice+on+Registration

Now for separate profile fields you could use
<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">Show this to user group 1, 2, and 3</vb:if>

Read more about conditionals here
https://vborg.vbsupport.ru/showthread.php?t=231525

DreadsUK
03-15-2014, 02:34 PM
Hmm what you need to do is have them in separate user groups.

This mod will let them choose when they register
https://vborg.vbsupport.ru/showthread.php?t=287591&highlight=PB+Usergroup+Choice+on+Registration

Now for separate profile fields you could use
<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">Show this to user group 1, 2, and 3</vb:if>

Read more about conditionals here
https://vborg.vbsupport.ru/showthread.php?t=231525

Thats exactly what i needed! thanks mate