Hi,
guest is not a registered users, maybe you need to have two types of registered users like
- Registered
- Membership
Alternative 1 (one form with select type of user)
You can do this:
- Create a select (required) with two options like
0|Registered
1|Membership
- Set following conditions
- if value equal to custom value "0" show Registered fields
- if value equal to custom value "1" show Membership fields
Alternative 2 (two differendt forms)
- Create a hidden field with default value "0"
- Set following conditions
- if value equal to custom value "0" show Registered fields
- if value equal to custom value "1" show Membership fields
- Create a menu item for normal registration
the default value of hidden field is 0, so in normal registration form you will see the field for Registered user
- Create a menu item of type "Systems Link->External URL" and put in url the url of normal registration but at the end add this:
?alias_of_hidden_field=1
si if your link to register normal users is "
http://giac.janadians.com/index.php/about-giac/register" you will put into url paramter this "
http://giac.janadians.com/index.php/about-giac/register?alias_of_hidden_field=1".
with this you will set hidden value to 1 and the condition hide Registered field and show Membership fields. An example to set value of field with url is into our docs at
https://www.easy-profile.com/docs/27-set-default-value-in-registration-from-url.html