This document is for an older version of

Freeform

.

View latest version →

Overview

Getting Started

This guide provides an overview of how Freeform works without going into too much detail about each feature, so it's easier to digest. Links to more information will be sprinkled throughout.

Introduction

Freeform centers itself around letting admins and clients enjoy the experience of building and managing simple or complex forms in an intuitive interface that lets you see a live preview of the forms you're building. We refer to this as the form builder, where almost everything is at your fingertips as it aims to stay out of your way and let you do as much as possible without moving around to other areas in the control panel. At the same time, Freeform is very powerful and flexible, so there is also a wide variety of other features, settings and options.

Forms

Each form is built inside the intuitive form builder. This is where you can design the form layout, configure which fields are required, set up integrations, validation and more. Freeform also allows for multi-page forms and has built-in spam protection options.

The form builder is a workspace divided into three columns:

  • Fields: the left column, where you can see the fields available (and create new ones).
  • Layout: the middle column, where you can drag and drop fields (from the left column) into and can rearrange each field however you please.
  • Settings/Property Editor: the right column, which is where you can configure the form settings, email notifications, integrations, and properties for each field and page, etc.

Freeform Form Builder

Fields

Freeform uses its own set of fields and field types. Fields are global and available in all forms but can also be overwritten per form. This allows you to save time reusing existing fields when making other forms and will enable you to adjust them when needed. So to clarify, you can create fields with labels and options common to all forms but also override those on each form.

Freeform includes several standard fields preinstalled for you, which should get you started. Fields can be created and managed in the main field creation area (Freeform > Fields > New Field) and can also be made directly within the form builder interface. The field manager area (Freeform > Fields > New Field) essentially stores the default labels, options, etc, for each field (which can be adjusted for each form inside the form builder).

Field Types in Form Builder

Email Notifications

Email notification templates are global and can be reused for multiple forms, saving you time when managing many forms. Email templates can be managed within the control panel (saved to the database) or as template files. All notification templates can be created and customized at Freeform > Email Notifications (of if using files, you can edit them in your favorite editor, etc).

Freeform allows you to send email notifications upon submittal of a form 5 different ways, each with its own content/template:

  • Admin Notifications
    • Specify the email address(es) you'd like to be notified upon successful submission of form.
  • Dynamic Recipients
    • Allow the user to choose from a predefined list of options to be emailed via select dropdown/radio group/checkbox group field.
  • Dynamic Template Notifications
    • At the template level with the dynamicNotification parameter in the Form query.
  • User/Submitter Notifications
    • To the user submitting the form, with the email addresses specified/selected in the Email field type.
  • User Defined
    • To a user-defined email address (e.g. Tell-a-Friend form), with the email addresses specified/selected in the Email field type.

Email Notifications List

Create an Email Notification

Formatting Templates

Freeform attempts to do all the heavy lifting when it comes to templating. Our looping templating approach allows you to automate all or almost all of your form formatting. This can be achieved by using ready-made options or custom-building your own formatting templates.

Forms can be generated on the front-end templates two different ways:

  1. By assigning one of the predefined formatting templates (stored as a standard Twig template in the craft/templates directory) inside the form builder and using the Form query render() method. This approach is very portable / DRY and works similarly to an include. Then simply insert 1 line of code in the template you want your form to load in:
    {{ craft.freeform.form("yourFormHandle").render() }}
    
    1
  2. By coding the formatting directly within the template you want the form to appear in, using the Form query. We recommend the first approach, but this option is technically available if your project requires it.

Integrations

Freeform supports various popular integrations so you can do more with your forms, such as accepting payments, subscribing users to email marketing lists, and capturing data in CRMs, etc.

Accept Payments through Stripe

CRM Integrations

Templating

We strived to make things as flexible as possible while also coming up with templating that can automate much of the handling of parsing your forms. Freeform figures out as much of this as possible for you. This can be achieved by building formatting templates for your forms.

Form Query

To display a form inside a page, add a Form template query to the template. This will automatically use the formatting template assigned to the form inside the form builder.

{{ craft.freeform.form("yourFormHandle").render() }}
1

To add some overrides to the form, such as setting some classes or even inserting values dynamically from the page, your code might look something like this:

{{ craft.freeform.form("yourFormHandle", {
	labelClass: "form-label",
	inputClass: "form-control",
	instructionsBelowField: true,
	overrideValues: {
		hiddenFieldHandle: entry.id,
	}
}).render() }}
1
2
3
4
5
6
7
8

Formatting Templates

Freeform includes a good number of example formatting templates to choose from. You can use these as a starting point and adjust them to suit your needs or create your own from scratch.

TIP

When experiencing issues with custom formatting templates, always consider switching to one of the sample ones (such as Flexbox) and see if your form works correctly. Often the issue can be detected and resolved by comparing your template/approach with what is used in a sample template.

Demo Templates

Freeform includes a complete set of demo templates. These demo templates give you a fully functioning area on your website with just a few clicks! Furthermore, it allows you to see real-world examples of the template code in action, which will help you get acquainted with Freeform more quickly.

TIP

When experiencing issues with your regular templates, always consider returning to the demo templates and see if your form works correctly there. Often the problem can be detected and resolved by comparing your template/approach with what is used in the demo templates.

Submissions

Similar to Craft Entries, every time a user submits a form, we refer to those as submissions. Freeform submissions can be viewed and edited in the control panel and the front end in templates as a list and individually. Within the control panel, you can filter the view by form (or show across all forms), search into submissions, adjust which field columns are shown, and click into any of the submissions to edit them.

Submissions Query

To display submissions inside a page, add a Submissions template query to the template.

Display a simple list of submissions:

{% set submissions = craft.freeform.submissions({
    orderBy: "firstName ASC, lastName DESC",
    status: ["pending", "closed"],
}) %}

<ul>
{% for submission in submissions %}
    <li>{{ submission.title }} - {{ submission.firstName }}</li>
{% endfor %}
</ul>
1
2
3
4
5
6
7
8
9
10

To display a single submission, your template code might look something like this (see Submission object for more info):

{% set submissionId = craft.app.request.segment(5) %}
{% set submission = craft.freeform.submissions({id: submissionId}).one() %}

{% if submission %}

    {% set form = submission.form %}

    <h3>{{ form.name }} - {{ submission.title }}</h3>

    <table class="table">
        {% for field in submission %}
        <tr>
            <th style="width: 20%">{{ field.label ? field.label : "no-label" }}</th>
            <td>
            {% set fieldValue = submission[field.handle].value %}
            {% if fieldValue is iterable %}
                <ul>
                {% for value in fieldValue %}
                    <li>{{ value }}</li>
                {% endfor %}
                </ul>
            {% else %}
                {{ fieldValue }}
            {% endif %}
            </td>
        </tr>
        {% endfor %}
    </table>

{% else %}

    <div class="alert">
        <p>Sorry, no submission was found.</p>
    </div>

{% endif %}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

Submissions

Edit Submissions