In order to display the forms you have created on form builder, you should use {FORM} tag. For example {FORM:profile} will display the registration form. Form tag requires to have exact form name as a second parameter. You can find your forms exact name on form properties section of the form builder.
Some fields on your form can be hidden initially. If you want to force your form to display these questions on specific pages you can use special properties of {FORM} tag.
For example: Profile Picture question is set to be hidden on entry forms. It only appears on update forms if you want it to be shown on the specific forms just write {FORM:profile:SHOW:profilePicture} and it will be forced to display it self. You can give multiple field names such as: {FORM:profile:SHOW:profilePicture,accountName}. Just like SHOW property there is also HIDE and HIDDEN properties.
HIDE: completely removes the given questions from entry form. {FORM:profile:HIDE:profilePicture} HIDDEN: Keeps the question in the form but doesn't display them to users. {FORM:profile:HIDDEN:profilePicture} Remember: SHOW, HIDE and HIDDEN properties doesn't actually affect the form itself. They only change the included instance of the form. They intended to show different questions to different user types or different questions for different pages.
There is one more property called VERTICAL. This property allows you to display questions above the input fields, instead of displaying them on the left side.
You can use all properties at the same time in a different order such as: {FORM:profile:SHOW:profilePicture,accountName:HIDE:username,password:HIDDEN:city,state:VERTICAL}
Tags:
template tags form builder forms
Related Articles:
Add a new comment
|
Send Comment