Gravity Forms Nested Forms (2024)

How do I enable this functionality?

After installing and activating the Gravity Forms add-on Nested Forms, you’ll want to add a Nested Form field to your form. Let’s step through that process.

Create two forms; a parent form and a child form using the form editor. The child form will be “nested” in the parent form via the Nested Form field.
Add a Nested Form field on your parent form and select your child form in the Nested Form field setting.
Select which fields from the child form should be displayed in the Nested Form field on the parent form.

Now that you have your first Nested Form field, let’s dig into the specifics of its settings and how it can be configured.

Feature Details

Nested Form Field

General Settings

Nested Form

Select the form that should be used to create nested entries for current form.

Summary Fields

Select which fields from the nested entry should be displayed in the table on the parent form.​​

To reorder columns in the Nested Form field table, drag and drop the summary fields, like this:

Notes:

  • This setting only impacts which fields from the nested form appear on the parent form. The modal will always show all fields that belong to the child form.
  • This setting was previously called “Display Fields”.
Summary Fields: Row ID

The Row ID is a special Summary Field only available in Nested Form fields.

Adding the Row ID Summary Field will automatically assign each child entry a row ID number based on its order in the Nested Form field. Row ID numbers are updated as new entries are added and existing entries are duplicated or deleted.

Entry Labels

Specify a singular and plural label with which entries submitted via this field will be labeled (i.e. “player”, “players”).

Appearance Settings

Modal Header Color

Select a color which will be used to set the background color of the nested form modal header.

Advanced Settings

Entry Limits

Specify the minimum and maximum number of entries that can be submitted for this field.

Dynamic Entry Limits
Use this snippet to dynamically set the Entry Limits based on a Parent form field’s value.

On the Frontend

By default, child entries will be displayed in a clean, compact table. Click the Add button to add a new child entry.

Nested Forms Modal with Default Gravity Forms Styles

The Display Fields selected in the field settings will be displayed for each submitted child entry. Child entries can be edited by clicking Edit and deleted by clicking Delete.

Nested Forms Entries with Default Gravity Forms Styles

On the Backend

The backend will also display the configured Display Fields for each child entry. To view the full child entry click the View Entry button. To view the child entries in the Gravity Forms list view, clicking View Expanded {Item} List.

Child Entries

Child entries are entries that are submitted via a Nested Form field. For examples of how child entries are displayed on the frontend and on the backend, see the respective section.

When a parent entry is trashed, its child entries will be trashed as well.

In order to protect the user from accidental data loss, child entries will be repopulated into the Nested Form field if the parent form is reloaded.

The {Parent} Merge Tag

The special {Parent} merge tag allows you to 1) populate data entered into the parent form into the child form and 2) populate data submitted on the parent entry in child form notifications.

Populate Child Form Fields with Parent Form Data

Any field on the child form that supports a default value can be populated via the {Parent} merge tag. Currently, you must manually specify the field/input ID from the parent form that should be populated into the child form. In the following example, we’ll populate the value of field ID 3 from the parent form into field ID 1 on the child form.

To populate multi-input fields (like the Name field), you will need to specify the input ID (which includes the field ID and the input index).

Here is a quick reference guide for the input indexes of common field types. The input ID will always use the FIELDID.INPUTID format. For example, a field ID of 2 and an input index of 3 would give you an input ID of 2.3.

All examples assume a field ID of 1.

Input NameIndexExample
Name Field
Prefix2{Parent:1.2}
First3{Parent:1.3}
Middle4{Parent:1.4}
Last6{Parent:1.6}
Suffix8{Parent:1.8}
Address Field
Street Address1{Parent:1.1}
Address Line 22{Parent:1.2}
City3{Parent:1.3}
State / Province4{Parent:1.4}
Zip / Postal Code5{Parent:1.5}
Country6{Parent:1.6}
Display Parent Data in Child Form Notifications

The {Parent} merge tag can also be used to display data from the parent entry in the notification send for a child entry. The desired entry property must be manually specified. For example, if you want to fetch the parent entry ID, you would use {Parent:id}. If you want to fetch the parent entry creation date, you would use {Parent:date_created}.

All properties of the entry object are supported. For a full list, see Gravity Forms’ Entry object documentation.

Feed Processing

By default, GF Nested Forms will only process feeds attached to the nested form after the parent form is submitted.

A practical example of this would be a parent form that creates a team and a nested form that uses the User Registration to register players. In most cases, you wouldn’t want the user accounts created for the players until the team submission has been finalized. GF Nested Forms handles this for you automatically.

If a feed attached to the parent entry has any delayed options enabled (i.e. User Registration), child form feeds are delayed and processed when the parent entry payment is completed.

In some cases, you may want to trigger the nested form feed to be processed when the nested form is submitted (e.g. collecting emails for a mailing list via MailChimp). To do this, use this snippet to enable the advanced Feed Processing setting:

add_filter( 'gpnf_enable_feed_processing_setting', '__return_true' );

And then select, “nested form” in the select.

A child entry is always created from a child form submission. The Feed Processing setting does not impact this behavior.

For even more granular control over when nested feeds are processed, use the gpnf_should_process_feed filter.

Calculations

GF Nested Forms provides support for using Nested Form fields in your Gravity Forms calculations. To use a Nested Form field in your calculation formula, you will need to manually type the desired merge tag using the following template:

{FIELD_LABEL:FIELD_ID:MODIFIER}

To include your child entry totals in your parent form’s total, see our simple walkthrough.

The following examples are based on a field label of “Players” and a field ID of “1”.

  • count – Returns the total number of child entries attached to the Nested Form field. If there are two child entries submitted for a Nested Form field, this merge tag would return 2.

    {Players:1:count}

  • total – Returns the sum of all child entry totals. For example, if Child Entry #1 has a total of $10 and Child Entry #2 has a total of $25, this merge tag would return 35.

    {Players:1:total}

  • sum – Returns the sum of the specified target field’s value from each child entry. For example, you had a Quantity field with an ID of “2” on your nested form and Child Entry #1 had a quantity of 2 and Child Entry #2 had a quantity of 3, this merge tag would return 5.

    {Players:1:sum=2}

  • set – Returns a comma-delimited set of the specified target field’s value from each child entry. For example, you had a Number field with an ID of “2” on your nested form and Child Entry #1 had a quantity of 1 and Child Entry #2 had a quantity of 3, this merge tag would return 1, 3.

    {Players:1:set=2}

    The :set modifier is designed to work with any GF Advanced Calculations math function that accepts a set of numbers (e.g. min(), max()).

Templating

You can take complete control over the Nested Form field output via the templating system. To do so, you will need to copy the template files from the plugin to your theme.

In the plugin, they’re located in the templates directory:

/gp-nested-forms/templates

In your theme, you will need to create a directory named gp-nested-forms and copy the template files there:

/your-theme/gp-nested-forms/

Now anytime GF Nested Forms attempts to load a template file, it will pull your version of the template file from your theme.

Available Templates
  • nested-entries.php – Used to render the child entries in a Nested Form field on the frontend.
  • nested-entries-detail.php – Used to render the child entries on the entry detail page (in the Gravity Forms backend).
  • nested-entries-simple-list.php – Used to render a single value from each child entry in a simple list format when the Nested Form field merge tag (or {all_fields} merge tag) is filtered to a single field via the All Fields Template plugin (e.g., {Players:1:filter[2]}).
  • nested-entry.php – Used to render a single child entry via the Nested Form field merge tag (e.g. {Players:1} – or – when a Nested Form field is rendered via the {all_fields} merge tag.
Templating Hooks

To make minor changes to verbiage or customize the data that will be used to render the Nested Form field, use the gpnf_template_args filter.

Exporting

Child entries can be exported together with their parent entry. Select the parent form on the Export Entries page and select thechild fields you want to export alongside the parent entry. For more details, see our tutorial on Exporting withNested Forms.

By default, the Parent entry data will output on a single line above the corresponding child entries.

Use the gpnf_export_parent_entry_data_on_child_entry_rows hook to export the Parent entry data on every Child entry row.

To only export child entries (with their respective parent data), use the gpnf_export_parent_entry_row hook.

Accessibility and Usability

Keyboard Navigation

All action elements use <button>‘s for consistent interaction for keyboard-centric users. When the Nested Form field’s modal is opened, the focus is trapped within the modal. This means you can tab in a circular loop through all form fields and modal actions. This keeps your users in context and focused.

Screen Reader Support

Nested Forms supports screen readers for all Nested Form field interactions. Screen readers will announce when the modal has been opened, which child entry you are about to edit or delete, and each action available within your Nested Forms modal. This makes it much easier for visually impaired readers to use your forms.

Duplicate Entries

Entry duplication can be activated using the gpnf_enable_duplication hook. Once activated, the Duplicate option will display in the Nested Form field.

FAQs

What happens to child entries when the parent entry is never submitted?

Child entries with no parent entry are called orphaned entries. Orphaned entries are considered “expired” after a week. Expired entries are trashed daily. To modify how long orphaned entries should be preserved, use the gpnf_expiration_modifier filter.

If the user returns the form, their orphaned child entries will be repopulated into the Nested Form field.

How do I dynamically populate a Nested Form field?

Nested Form fields can be dynamically populated the same way as other Gravity Forms fields. Nested Form fields expect a comma-delimited list of entry IDs for the dynamic population value.

How to set a Nested Form as required?

To set a Nested Form or Gravity Forms repeater form as required, go to the Advanced tab of the field options window and set the Minimum field to “1” in the Entry Limits option.

How do I include Nested Entry totals or Gravity Forms repeater totals in the Parent Form total?

We’ll need to include a Calculated Product field on the parent form to capture the entry totals for each nested entry and automatically apply those totals towards the Parent Forms total. Here’s how to set this up in three, quick steps.

Add a Product field to your parent form.
Set the “Field Type” setting to “Calculation” and check Disable quantity field.
Manually enter the Nested Form field merge tag into the “Formula” setting and append the “:total” modifier.

All done! See the demo at top of this page to see this live.

Can I consolidate child products in the parent form’s order summary?

Yes! Once you have set up including Nested Entry totals in the Parent Form total, add the following snippet to also include the Child Entry products in the Parent Product field when viewing the Order Summary.

View CodeDownload Code

Once the snippet has been added, any time the :total merge tag modifier is used in a calculation on the Parent form, the Order Summary will automatically group Child Products into that Parent form field.

Why are my child entries not counting towards the parent form’s total?

You must explicitly include child entry totals in your parent form via a Calculated Product field. See this walkthrough.

To calculate child entry totals in your parent form, the child form must contain at least one Pricing field. The :total merge tag modifier only includes Pricing fields (e.g. Products, Options, Shipping, etc). It will not include Number fields.

How do I show a single value from each child entry?

First, you’ll need to install our All Fields Template plugin. This provides the ability to filter which fields from the nested form are displayed in the Nested Form field’s merge tag (and {all_fields}).

Once installed, you can filter down to a specific field (such as single line text) like so:

{Players:1:filter[1]}

Based on our demo form, this would display a simple list of the Player’s names. This also works for Gravity Forms repeater fields.

Why is my Nested Form modal window (popup) not displaying?

An element with a larger z-index generally covers an element with a lower one. So if your theme has a larger z-index specified, it’ll cover the modal window from the Nested Forms field.The solution in this case is to specify a larger z-index number for the Nested Form modal window, like this: .gpnf-dialog.ui-dialog { z-index: 99999999 !important; }

Am I able to add a conditional field within the nested section?

Yup! A child form can use any of Gravity Forms core features, including conditional logic. You can also add conditional logic to the Gravity Forms repeater fields.

Can I set dynamic min/max Entry Limits?

We have a snippet to set the Nested Form field’s Entry Limits based on a Parent form field’s value. Here’s how you use it:

  1. Add a field to the Parent form that will contain the entry limit and note the Field ID.
  2. Copy and paste the snippet into your theme’s functions.php file.
  3. Paste the following class below the snippet.

    new GP_Nested_Forms_Dynamic_Entry_Min_Max( array('parent_form_id' => 4,'nested_form_field_id' => 3,'max_field_id' => 1,'min_field_id' => 2, // (Optional)) );
  4. Update the parent_form_id to your Parent Form ID.

  5. Set the nested_form_field_id to the Nested Form Field ID in the Parent Form.
  6. Set either the max_field_id or min_field_id (or both) to the field you noted in Step 1.

When a value is entered in the field on the Parent form, GP Nested Forms will automatically adjust the minimum or maximum Entry Limits to the value in that field.

Haven’t installed a snippet before? Check out this guide on how to install snippets.

How do I display a table for Nested Form fields in Confirmations and Notifications?

Add this snippet to your theme’s functions.php file to add an option to output a table layout for Nested Form fields. Any Confirmation or Notification that uses the {all_fields:gpnf_table} merge tag with the additional :gpnf_table modifier will be output as a table.

Here’s the output without the snippet:

Gravity Forms Nested Forms (23)

And with the snippet installed:

Gravity Forms Nested Forms (24)

The fields that display in the table output will match the settings in the Nested Form field. Any fields set to display in Summary Fields will output in the table. To force the table to output all Child fields, add the gpnf_all_fields modifier to the snippet, like this:

{all_fields:gpnf_table,gpnf_all_fields}.

How do I map child form data in a parent form feed?

This is not currently possible; however, you can map child form data in their own feeds configured within the child form.

Can I improve the look of confirmation emails when using the WooCommerce Gravity Forms Products Add-Ons plugin?

By default, WC GF Product Add-Ons strips HTML from form fields, including Nested Form fields. This can be bypassed by adding this snippet to your theme’s functions.php file.

Due to the nature of how Product Add-Ons saves the display value as order meta, this change will only affect new orders.

Can I customize the output of a Nested Form field in GravityView?

Currently the output for a Nested Form field in GravityView can’t be customized, but what you can do is instead use the Custom Content option in GravityView.

Gravity Forms Nested Forms (25)

Insert the Merge tag for the Nested Form Field into the Custom Content field.

Gravity Forms Nested Forms (26)

The merge tag will output our template, which you can further customize with a custom template.

How can I programmatically create Nested Form entries?

You can use the Gravity Forms API to create Child entries and assign them to a Parent entry using this snippet as a model:

$new_child_entry = array( 'form_id' => 124, // The ID of the child form. 'created_by' => 1, '1.3' => 'Dave', '1.6' => 'Smiff', '2' => '(123) 123-1234', GPNF_Entry::ENTRY_PARENT_KEY => 234, // The ID of the parent entry. GPNF_Entry::ENTRY_PARENT_FORM_KEY => 123, // The ID of the parent form. GPNF_Entry::ENTRY_NESTED_FORM_FIELD_KEY => 3, // The ID of the Nested Form field on the parent form.);$child_entry_id = GFAPI::add_entry( $new_child_entry );

If you have questions about using the API to create Child entries, drop us a line.

How can I programmatically retrieve Nested Form child entries from a parent entry?

You can use a function like this to programatically get all child entries from a parent entry:

$parent_entry = new GPNF_Entry( $entry );$child_entries = $parent_entry->get_child_entries( $nested_form_field_id );

Be sure to replace $nested_form_field_id with your nested form’s field ID number.

Can I add a child entry automatically?

You can! We have a snippet that adds the ability to trigger population in a Nested Form field. It allows you to automatically add a child entry to a Nested Form field with data from your parent form. This is useful when wanting to do things like include the primary registrant as one of the child registrants in the Nested Form field.

Some tips on using it:

  • Parent form field values can be inserted into the Nested Form field using the field_map parameter.
  • To trigger population when any value is inserted into the trigger_field_id, set the trigger_field_value to _notempty_.

If you have questions on configuring the snippet, drop us a line. We’re happy to help.

Can I show Parent form data in a Child form’s notifications?

The following snippet adds three merge tags for use in Child form notifications: {parent_form}, {parent_field}, and {parent_entry}. When combined with merge tag modifiers, these merge tags will let you display information from the Parent entry in Child notifications.

View Code Download Plugin

Some example merge tag modifiers are:

  • {parent_form:id}
  • {parent_form:title}
  • {parent_field:label}
  • {parent_entry:id}

For a more comprehensive list, refer to these docs:

Can I send Nested Form notifications when a child form is submitted?

By default, Nested Form notifications get sent when the parent form is submitted.

We have a snippet that can send Nested Form notifications as soon as the Nested Form gets submitted.

Copy and paste the snippet into your theme’s functions.php file. The default snippet code will automatically apply to all forms:

add_filter( 'gpnf_should_send_notification', function( $should_send_notification, $notification, $context ) {return $context == 'child';}, 10, 3 );

If you only want to target one nested form, update the snippet as shown below:

add_filter( 'gpnf_should_send_notification_123', function( $should_send_notification, $notification, $context ) {return $context == 'child';}, 10, 3 );

Replace 123 with your Nested Form ID.

Known Limitations

  • You may not include a Nested Form field within a nested form.
    • Solution: If you need to collect repeatable data inside a child form, we recommend using a List field or exploring the Gravity Forms Repeater API.
  • You may not display a form independently if it is nested inside of a Nested Form field on the same page.
  • Payment feeds will not be processed on child forms.
  • By default, child notifications are sent regardless of the parent entry’s payment status. To delay child notifications until the parent entry has been paid, use this snippet.
  • Child forms that are loaded via a Nested Forms field are not compatible with Save and Continue functionality.
    • This limitation applies to both GP Advanced Save and Continue and Gravity Forms’ native Save and Continue feature.
    • Save and Continue is fully supported on parent forms! When used on a parent form, Save and Continue will save and reload all child entries that were submitted in a Nested form field.

Hooks

  • gpnf_all_entries_nested_entry_markup
  • gpnf_bypass_entry_permissions
  • gpnf_calc_entries
  • gpnf_calc_entries (JS)
  • gpnf_calc_replacement_value
  • gpnf_calc_replacement_value (JS)
  • gpnf_can_user_edit_entry
  • gpnf_child_entries_separator
  • gpnf_child_entry_max
  • gpnf_cookie_name
  • gpnf_disable_export_fields
  • gpnf_display_value
  • gpnf_duplicate_entry
  • gpnf_enable_duplication
  • gpnf_entry_limit_max (JS)
  • gpnf_entry_limit_max (PHP)
  • gpnf_entry_limit_min
  • gpnf_entry_url
  • gpnf_expiration_modifier
  • gpnf_export_child_field_header
  • gpnf_export_parent_entry_data_on_child_entry_rows
  • gpnf_export_parent_entry_row
  • gpnf_fetch_form_html_after_add (JS)
  • gpnf_fetch_form_html_after_add_or_edit (JS)
  • gpnf_fetch_form_html_after_delete (JS)
  • gpnf_fetch_form_html_on_load (JS)
  • gpnf_init_nested_form
  • gpnf_init_script_args
  • gpnf_item_labels
  • gpnf_jquery_ui_dependencies
  • gpnf_modal_button_css_classes (JS)
  • gpnf_parent_merge_tag_value
  • gpnf_populated_entry
  • gpnf_post_duplicate_entry
  • gpnf_preload_form
  • gpnf_replace_parent_merge_tag_on_edit (JS)
  • gpnf_row_id_label
  • gpnf_row_id_value
  • gpnf_save_and_continue_token
  • gpnf_should_delete (JS)
  • gpnf_should_process_feed
  • gpnf_should_send_notification
  • gpnf_should_use_static_value
  • gpnf_submitted_entry_ids
  • gpnf_submitted_nested_entries
  • gpnf_template_args
  • gpnf_use_jquery_ui

Gravity Forms has hundreds of hooks. Check out our Gravity Forms Hook Reference for the most thorough guide to Gravity Forms’ many actions and filters.

Related Resources

  • Add Image Previews to Gravity Forms File Upload Fields
    Learn how to add image previews to file upload fields when using GP File Upload Pro.
  • Calculations with Nested Forms
    Perform helpful calculations based on entries submitted in a Nested Form field.
  • Create Shareable Health And Safety Audits With Gravity Forms
    Learn how to use Gravity Forms to create shareable Health and Safety audits that your technicians and auditors will love.
  • Exporting with Nested Forms
    An overview of Entry Exports with GF Nested Forms.
  • Gravity Forms Data Export: A Step-by-Step Guide
    Learn how to export Gravity Forms data in this step-by-step guide. Explore the benefits of exporting form data and how to get more out of your data export.
  • Gravity Forms Repeaters: The Ultimate Guide
    Everything you (could possibly) need to now about using Gravity Forms repeater fields. Explore what they are, what your options are, and how to use them to collect repeatable data in Gravity Forms.
  • How to Build a Player Roster with Age-Based Pricing
    Register players with age-based registration fees in a single form submission.
  • How to Create Timesheets with Gravity Forms
    Learn how to take timesheets and time tracking to the next level using Nested Forms and Date Time Calculator. Plus, calculate overtime pay, restrict entries to available weekdays only, and other tips.
  • How To Customize the Gravity Forms Layout in WordPress

  • Learn how to group and repeat fields in Gravity Forms using a range of methods, including page fields, columns, sections, and nested forms.
  • How To Set Up Conditional Pricing with Nested Forms
    Want to provide discounts for large groups? Learn how to offer quantity-based discounts with Nested Forms and conditional logic.
  • How to Use Ready Classes in Gravity Forms
    Learn how to use Gravity Forms Ready Classes to customize and style your forms. Get an overview of CSS Ready Classes and how to apply them.
  • Register Multiple Users From a Single Form
    Register multiple users to your WordPress site with a single form submission.
  • Spotlight: Netalys' Salt Consumption Calculator
    A behind-the-scenes look at how Netalys built a daily salt consumption calculator using Nested Forms and Populate Anything.
  • The Potent Potion Behind ZeeDesign’s Insurance Quoting Platform
    Learn how you can build a quoting platform from scratch — and one that easily handles multiple checkout items using Gravity Perks.
Gravity Forms Nested Forms (2024)

FAQs

What is Gravity Forms add on nested forms? ›

What does Gravity Forms Nested Forms (Gravity Forms Repeater) do? This plugin adds a new Nested Form field type. This field allows you to select another form that will be used to collect “child” entries and attach them to the “parent” entry on submission.

Can you nest a form within a form? ›

Every form must be enclosed within a FORM element. There can be several forms in a single document, but the FORM element can't be nested.

What is the parent child form in Gravity Forms? ›

The Parent-Child Forms Extension allows Gravity Flow administrators to define Parent-Child relationships between forms. While viewing an entry for a Parent form a new child form can be submitted and linked to the current entry.

What is the nested reactive form? ›

Reactive Forms in Angular offer powerful tools for building complex and dynamic user interfaces. While it's common to use FormGroup within a single parent component, there are scenarios where you may want to manage form logic in child components or even nest child components within child components.

What does nested form mean? ›

Nested forms are essentially a form that creates instances of multiple classes or objects without having to redirect to different routes. Nested forms are used when it may be beneficial for a user to be able to create multiple instances of objects within a single route or single form.

What is the difference between object type and nested type? ›

Object field type does not support querying tied properties within individual objects. Do not use nested type if there will only be one inner object per outer object. Otherwise, use nested type fields if you need to query two or more fields within the same inner object, otherwise use the object type.

Can a form be within a form? ›

You can't nest forms. If your logic requires forms nested inside another form, then you need to rethink your logic.

How to create a nested form? ›

Dynamic Nested Form
  1. Create a New Form within your Project.
  2. Add a Select field to the form called Select a Form.
  3. Ensure the Property Name within the API tab is selectAForm.
  4. Click the Data tab within the Select component settings.
  5. Click the Data Source Type and select URL.
Mar 21, 2024

What is a form within another form called? ›

In HTML nesting forms means placing one <form> element inside another is not allowed, although, multiple forms can be possible to create. The HTML specification explicitly specifies that forms cannot be nested. Nesting forms can lead to unexpected behavior and conflicts between forms.

Who is the founder of Gravity Forms? ›

Rocketgenius Inc., the makers of Gravity Forms, was founded by Carl Hanco*ck, Alex Cancado and Kevin Flahaut in 2007.

What does Gravity Wiz do? ›

Gravity Wiz is a Gravity Forms Certified Developer dedicated to providing helpful plugins, snippets, and tutorials for Gravity Forms. Gravity Wiz offers a suite of add-ons called “Gravity Perks” and each one adds a small enhancement to Gravity Forms.

What are the benefits of Gravity Forms? ›

To recap, some of the main benefits of choosing Gravity Forms are as follows:
  • An easy-to-use visual, drag-and-drop form builder interface.
  • Powerful built-in features such as conditional logic, multi-page forms, calculations, dynamic field population, and more.
Jan 3, 2024

What does it mean to display replies in nested form? ›

"Display replies in nested form" shows the original post first, with any comments indented underneath and in chronological order. The option “Display replies in threaded form” shows only the original post, requiring you to click on any replies, which appear as links below.

What is the difference between Gravity Forms and fluent forms? ›

Customizability and Flexibility:

Fluent Forms: Provides a fair amount of customization options and flexibility, but some advanced customization may require some technical knowledge. Gravity Forms: Offers more extensive customization options and is often favored by developers due to its flexible and extensible nature.

What is the difference between MetForm and Gravity Forms? ›

1. MetForm allows seamless editing and customization for all form fields with Elementor page builder. 1. Gravity Forms offer the highest number of 3rd party integrations for Pro and Elite license users.

References

Top Articles
Latest Posts
Article information

Author: Greg Kuvalis

Last Updated:

Views: 6149

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Greg Kuvalis

Birthday: 1996-12-20

Address: 53157 Trantow Inlet, Townemouth, FL 92564-0267

Phone: +68218650356656

Job: IT Representative

Hobby: Knitting, Amateur radio, Skiing, Running, Mountain biking, Slacklining, Electronics

Introduction: My name is Greg Kuvalis, I am a witty, spotless, beautiful, charming, delightful, thankful, beautiful person who loves writing and wants to share my knowledge and understanding with you.