I am trying to create a single page that displays multiple user forms as tabs. For example, a basic contact form, a quote form request, etc.
It seemed to me that I could create a new page type and scroll through the children to display the forms, but the $ Form variable does not display the form.
<% loop $Children %>
<div>
<h2>$Title</h2>
$Form
</div>
<% end_loop %>
Am I missing something, or is there another way to render the form using its identifier in the template file?
source
share