Skip to main content

Element Field Types

Freeform includes 2 field types:

  • Freeform Forms - allows you to assign/relate forms to other element types such as Entries.
  • Freeform Submissions - allows you to assign/relate form submissions to other element types such as Entries.

Here's an overview on how to use these field types:

Creating the Field

Creating a Freeform Form field is done just like any other fieldtype, here's an overview of the process:

1

Go to the Settings area in Craft control panel. Click on Fields.

Click the New field button in the top right corner.

2

Name the field as you wish. For example: Related Form with a handle of relatedForm.

3

For the Field Type option, select Freeform Form or Freeform Submissions from the list.

Selection Label is the text that will appear on the button which opens the Freeform Form selection pop-up dialog.

4

Click the Save button in the top right corner to save the new field.

Finished!

Your Freeform Form field is now available to be assigned to other sections.

How it Works

The Freeform Form fieldtype lets the user assign any Freeform form to any element: a section Entry, Categories, Assets, etc.

Template Properties

The following are template properties are available for the Form fieldtype:

  • name #
    • Outputs the name of the form
  • handle #
    • Outputs the handle of the form
  • id #
    • Outputs the unique ID of the form
  • description #
    • Outputs the description of the form
  • render() #
    • Outputs the full form, rendering it with the Formatting Template specified in the form builder for the form.

Examples

Freeform Form Field in Entries

An example of template code you would use to display a Freeform form (with field handle of myFreeformFieldName) that is attached to a Craft Entry would look something like this:

{% for entry in craft.entries.section('news').limit(10) %}
<div class="entry">
<h2><a href="{{ entry.url }}">{{ entry.title }}</a></h2>
{{ entry.summary }}
{% if entry.myFreeformFieldName is defined and entry.myFreeformFieldName is not empty %}
<h3>{{ entry.myFreeformFieldName.name }}</h3>
{{ entry.myFreeformFieldName.render() }}
{% endif %}
</div>
{% endfor %}

If you'd like to automatically pass content from another element (such as a Craft Entry) into Freeform field(s), you'd have to use the overrideValues property inside your formatting template.

For example, if you want to pass a title of an entry to a Freeform field, and the entry slug was in the second segment of your URL, you should set that in your formatting template. Also be sure to include a hidden Freeform field in your form (in this case called entryTitle). Your formatting template code might look something like this:

{% set entry = craft.entries.slug(craft.request.getSegment(2)).first() %}

{{ form.renderTag({
overrideValues: { entryTitle: entry.title }
}) }}

Below is example code for displaying form submissions that have been attached to a blog entry (from a field called formSubmissions).

{% set blogs = craft.entries.section("blog").limit(20) %}

{% for blog in blogs %}
<h2>{{ blog.title }}</h2>
<ul>
{% for submission in blog.formSubmissions %}
<li>{{ submission.title }}</li>
{% endfor %}
</ul>
{% endfor %}