Title: wpDataTables integration for Forminator Forms
Author: wpDataTables
Published: <strong>Me 7, 2021</strong>
Last modified: Meurth 30, 2026

---

Search plugins

![](https://ps.w.org/wpdatatables-forminator/assets/banner-772x250.png?rev=2527831)

![](https://ps.w.org/wpdatatables-forminator/assets/icon-128x128.png?rev=2527831)

# wpDataTables integration for Forminator Forms

 By [wpDataTables](https://profiles.wordpress.org/wpdatatables/)

[Download](https://downloads.wordpress.org/plugin/wpdatatables-forminator.1.3.10.zip)

 * [Details](https://cor.wordpress.org/plugins/wpdatatables-forminator/#description)
 * [Reviews](https://cor.wordpress.org/plugins/wpdatatables-forminator/#reviews)
 *  [Installation](https://cor.wordpress.org/plugins/wpdatatables-forminator/#installation)
 * [Development](https://cor.wordpress.org/plugins/wpdatatables-forminator/#developers)

 [Support](https://wordpress.org/support/plugin/wpdatatables-forminator/)

## Description

wpDataTables integration for Forminator Forms is an add-on that connects the best
WordPress table plugin [wpDataTables](https://wordpress.org/plugins/wpdatatables/)
and easy-to-use WordPress form builder [Forminator](https://wordpress.org/plugins/forminator/).

A powerful tool that adds _“Forminator Form”_ as a new table type in wpDataTables
and allows you to create responsive, sortable tables & charts based on Forminator
Forms submissions from your site frontend using intuitive wpDataTables table and
chart wizard.

You will need to install [wpDataTables](https://wordpress.org/plugins/wpdatatables/)
and [Forminator](https://wordpress.org/plugins/forminator/) plugins to be able to
use this integration.
 This great integration is compatible with [wpDataTables Premium](https://wpdatatables.com/)
version and [Forminator PRO](https://wpmudev.com/project/forminator-pro/) and their
advanced features. You can use any combination of these two plugins. Isn’t that 
awesome?

When the form/quiz/poll is created and entries are ready, you can begin creating
a wpDataTable based on it. First, go to **wpDataTables** -> **Create a Table**, 
choose **“Create a table linked to an existing data source”** option, and click **“
Next”**.

Then choose **“Forminator Form”** as the Input data source type. After you choose**“
Forminator Form”** as a table type, a new select-box **“Choose a Forminator Form”**
will appear. With this select-box, you can choose a form, quiz or poll, that will
provide entries as data for your new table.

After this step you will see a select-box **“Choose fields to show as columns”**
that allows you to choose the form/quiz/poll fields that you will use as columns.
Using this select-box, you can choose form fields that will be used in the table.

Furthermore, you can choose which form fields will be shown in the table.

Here is the list of the supported form fields:

 * **NEW!** Slider Field (Single and Range)
 * **NEW!** Group Field
 * Name (Single and Multiple)
 * Email
 * Phone
 * Address
 * Website
 * Input
 * Textarea
 * Number
 * Radio
 * Checkbox
 * Calculations
 * Select (Single and Multiple)
 * Datepicker (Calendar, Dropdowns, and Text input)
 * Timepicker ( Dropdowns and Number input)
 * File Upload (Single and Multiple)
 * Post Data
 * Hidden Field
 * Currency
 * PayPal
 * Stripe
 * E-Signature (only available in [Forminator PRO](https://wpmudev.com/project/forminator-pro/))

Please note that fields like reCaptcha, HTML, Page break, Section, and GDPR Approval
are excluded from tables.

**Important:** For all form types that you want to create tables (form, quiz, or
poll) you will need to have submission data for those form types in the database.
That means that you need to turn off the option _“Disable store submissions in my
database”_ on Data Storage settings in the Forminator plugin. You will be able to
save submissions in the database and then create a table in wpDataTables.

**Forms**

When you create a table from Regular form, in table column headers will be used 
names of your fields, and each row will be shown as a separate submission. Common
fields such as Entry data, Entry ID, and User IP are available for each form.

Fields like _“Name (Multiple)”_ and _“Address”_ will be formatted like on the Forminator
forms Submissions page.
 If you want to show those data in one line with space between
without formatting, you can use hooks for _“Name(Multiple)”_ like in the following
example:

    ```
    // Remove formatting from Name (Multiple) fields
    // $removeForminatorFormatting- false by default - bool
    // $formID - Id of the form - int
    function remove_style_from_name_multiply_fields($removeForminatorFormatting, $formID){
       // Example for the form with id 1
       if ($formID == 1){
        // Provide true to remove formatting
           $removeForminatorFormatting= true;
       }
       return $removeForminatorFormatting;
    }
    add_filter('wdt_forminator_remove_style_from_name_multiply_fields', 'remove_style_from_name_multiply_fields', 10, 2);
    ```

and for the _“Address”_ fields as well you can show the data in one line separated
with a comma using this hook:

    ```
    // Remove formatting from the Address fields
    // $removeForminatorFormatting- it is false by default - bool
    // $formID - Id of the form - int
    function remove_style_form_address_fields($removeForminatorFormatting, $formID){
       // Example for form with id 1
       if ($formID == 1){
        // Provide true to remove formatting
           $removeForminatorFormatting= true;
       }
       return $removeForminatorFormatting;
    }
    add_filter('wdt_forminator_remove_style_form_address_fields','remove_style_form_address_fields', 10, 2);
    ```

For the upload fields, there are some formatting rules applied depending on file
extension. For image extensions _(jpg, jpeg, png, gif, webp)_ the output will be
formatted like image links.
 Files with the _‘mp3’_ and _‘wav’_ extensions will 
be formatted as audio HTML tags, and the files with _‘mp4’_ and _‘webm’_ extensions
will be formatted as video HTML tags.

If you need some different formatting rules for those upload fields you can use 
the following hook:

    ```
    // Filter formatted file URL
    // $fileURLOutput - Already formatted file URL - string
    // $fileURLExtension - File URL Extension (png,csv,pdf,mp4...) - string
    // $file - Original file URL - string
    function filter_file_upload_output($fileURLOutput, $fileURLExtension, $file, $formID){
       // Example for form with id 1
       if ($formID == 1){
        // Example only for the jpg extension
           if ($fileURLExtension == 'jpg'){
            // Set a custom image HTML tag with width of 400px
           $fileURLOutput = '<img width="400" alt="' . basename($file) . '" src=' . $file . '>';
           }
       }
       return $fileURLOutput;
    }
    add_filter('wdt_forminator_filter_file_upload_output', 'filter_file_upload_output', 10, 4);
    ```

All other uploaded files will be formatted as HTML links.

For the Website and email fields, there is no formatting rules applied from Forminator.

If you need formatting rules from Formiantor for those fields (to be shown as links)
you can use the following hook

for Email field:

    ```
    // Add formatting from Formiantor for Email field
    // $removeForminatorFormatting- it is true by default - bool
    // $formID - Id of the form - int
    function remove_style_form_email_fields($removeForminatorFormatting, $formID){
       // Example for form with id 1
       if ($formID == 1){
        // Provide false to add Forminator formatting as link
           $removeForminatorFormatting = false;
       }
       return $removeForminatorFormatting;
    }
    add_filter('wdt_forminator_remove_style_form_email_fields','remove_style_form_email_fields', 10, 2);
    ```

and for Website field:

    ```
    // Add formatting from Formiantor for Website (URL) field
    // $removeForminatorFormatting- it is true by default - bool
    // $formID - Id of the form - int
    function remove_style_form_url_fields($removeForminatorFormatting, $formID){
       // Example for form with id 1
       if ($formID == 1){
        // Provide false to add Forminator formatting as link
           $removeForminatorFormatting = false;
       }
       return $removeForminatorFormatting;
    }
    add_filter('wdt_forminator_remove_style_form_url_fields','remove_style_form_url_fields', 10, 2);
    ```

**New field support – Group field**

Now, support for Group fields is avalible with our integration as well. Every Group
field in form will be shown as separate column and all fields that are in group 
will be parsed as table layout (in each cell you will have separate table as is 
shown on Formiantor submissions). Each field in group will be represent in the head
of that table and entries from those fileds will be in the body of that table. If
Repeater is enabled then those entries will be populated in table body as well.

Additionally, there is a hook available for filtering all the formatted entries (
only for forms and quizzes)

    ```
    // Filter all the formatted entries
    // $formattedEntry - Already formatted entry - string
    // $field - Forminator_Form_Field_Model - object
    // $entry - Forminator_Form_Entry_Model - object
    function filter_formatted_entry($formattedEntry, $field, $entry){
        // Example for form with id 1
          if ($entry->form_id == 1){
           // Example only for custom forms
              if ($entry->entry_type == 'custom-forms'){
                   // Check is set meta data for current field
                  if (isset($entry->meta_data[$field->slug])) {
                       $entryValue = $entry->meta_data[$field->slug]['value'];
                       // Check is field type 'name' and that is not array
                        if ($field->raw['type']== 'name' && !is_array($entryValue)) {
                          // if $entryValue is John return null - it will not be shown in the table 
                            if ($entryValue == 'John') $formattedEntry = null;
                        }
                   }
              }
          }
          return $formattedEntry;
    }
    add_filter('wdt_forminator_filter_formatted_entry','filter_formatted_entry', 10, 3);
    ```

**Quizzes**

You can create a table from the _Personality_ and _Knowledge_ quizzes. For quizzes,
common fields like Entry Date and Entry ID are available.
 If lead generation feature
is enabled, it will be available two more fields like _Email_ and _Name_ generated
by this feature.

 1. When you create a table from a _Knowledge quiz_, in the table, questions will appear
    as column headers, and each row will be populated with the separate submission 
    answers. For this type of quiz, three more fields are available like Correct answers,
    Incorrect answers and Score (Correct answers/Total answers). In that table, the
    answers will be formatted the same way as on the Forminator Submissions page. (
    correct answers have a green background and the wrong ones have a red background).
 2. When you create a table from the _Personality quiz_, questions will appear as column
    headers in that table. Also, the _“Quiz result”_ will show up in the columns (if
    you choose it in the option _“Choose fields to show as columns”_), and each row
    will be shown as a separate submission answer.

If you want to show answers from _Knowledge quiz_ without their formatting, you 
can use the following hook:

    ```
    // Remove formatting from answers in Knowledge quiz
    // $removeForminatorFormatting - it is false by default - bool
    // $formID - Id of the form - int
    function remove_quiz_iscorrect_style($removeForminatorFormatting, $formID){
       // Example for form with id 1
       if ($formID == 1){
        // Provide true to remove formatting
           $removeForminatorFormatting = true;
       }
       return $removeForminatorFormatting;
    }
    add_filter('wdt_forminator_remove_quiz_iscorrect_style','remove_quiz_iscorrect_style', 10, 2);
    ```

**Polls**

Polls entries in the Forminator submissions are shown as grouped values based on
the answers. The same data can be displayed in a chart (Bar or Pie chart depending
on your settings). In accordance with that, you can create tables based on the Forminator
poll submissions either for the Bar chart or for the Pie chart structure, no matter
what was chosen in the Forminator settings for the poll chart type. Polls do not
have common fields like forms and quizzes.

 1. In the first case, if you select the _Poll for Bar chart_ option, you can choose
    the columns to be created from the _Poll question_ and _Answers_ of that poll in
    the table. Only one row of data will be shown, since the data is grouped. After
    creating a table you are able to create a Google Bar chart and to show it on the
    front-end.
 2. In the second case, if you select the _Poll for Pie chart_ option, you can choose
    only the columns to be created from the _Poll answers_ and _Total votes_ of that
    poll in the table. Then, the first column will list all the possible answers _(
    Poll answers)_, and the second one _(Total votes)_, will display grouped data for
    each answer. After creating a table, you can create a Google Pie chart and add 
    it on the website page as well.

If you need, you can show both charts (Pie and Bar) on the front-end for the same
Poll.

**Integration settings**

Each Forminator form-based wpDataTable receives an extra Forminator settings tab
on the table configuration page, together with several additional table settings.
Using this tab, you can define which form entries will appear in the wpDataTable
based on the range of entry IDs, entry date by choosing one of the two possible 
filtering logic options in the Filter by date select box. You can select between
Filter by date range and Filter by the last X time period; or, you can leave this
block empty if you don’t wish to filter form entries displayed in the table.

 * _Filter by entry ID range_ – Two input fields (“From” and “To”) are shown in 
   this section. If you define some values in these number input fields, wpDataTable
   rows will be updated according to the selected range.
 * _Filter by date range_ – If you select this option, two input fields (“From” 
   and “To”) will be displayed right to the Filter by date select box. By defining
   some date values in these datetimepicker input fields, wpDataTable rows will 
   be narrowed down according to the provided date range.
 * _Filter by last X time period_ – When this option is selected, the Filter by 
   date select box will display two input fields. In the first one, you can define
   a number (e.g., 30), and in the second one, you can choose between (Day(s), Week(
   s), Month(s), and Year(s)). By selecting, e.g., “30 Day(s)” you will filter and
   display in the wpDataTable only the entries added in the last 30 days in the 
   Forminator Form used as a data source for this wpDataTable.

In those tables, you can use all features that are included in wpDataTables:

 1.  **NEW!** [Create 9 different Chart.js charts types](https://wpdatatables.com/documentation/wpdatacharts/chartjs/),
 2.  **NEW!** [Responsive datatables](https://wpdatatables.com/documentation/table-features/responsiveness/)
 3.  **NEW!** [Integration with Avada Website builder](https://wpdatatables.com/documentation/general/avada-builder-integration/)
 4.  **NEW!** [Integration with DIVI Website builder](https://wpdatatables.com/documentation/general/divi-builder-integration/)
 5.  **NEW!** [Caching data](https://wpdatatables.com/documentation/table-features/caching-data-and-auto-update-cache-in-wordpress-tables/)
 6.  **NEW!** [Auto update cache data](https://wpdatatables.com/documentation/table-features/caching-data-and-auto-update-cache-in-wordpress-tables/#auto-update-cache)
 7.  **NEW!** FULL Frontend WCAG compatibility
 8.  **NEW!** Responsive Charts – now each chart (both Google and Chartjs) can be responsive
 9.  **NEW!** Grouping Charts – rows with same labels would be treated as a single 
     entry, summing up all the values in other cells
 10. [Global search](https://wpdatatables.com/documentation/general/table-configuration-page-overview/#table-settings-sorting-filtering),
 11. [Sorting](https://wpdatatables.com/documentation/table-features/sorting/),
 12. [Column visibility](https://wpdatatables.com/documentation/column-features/column-visibility/),
 13. [Pagination](https://wpdatatables.com/documentation/general/table-configuration-page-overview/#table-settings-display),
 14. [Show rows per page](https://wpdatatables.com/documentation/general/table-configuration-page-overview/#table-settings-display),
 15. [Row grouping](https://wpdatatables.com/documentation/column-features/row-grouping/),
 16. [Table layout](https://wpdatatables.com/documentation/table-features/table-layout-and-word-wrap/),
 17. [Scrollable](https://wpdatatables.com/documentation/table-features/scrollable/),
 18. [Export data (in Excel, CSV, PDF, Copy or Print)](https://wpdatatables.com/documentation/table-features/table-tools/),
 19. [Create 14 different Google charts types](https://wpdatatables.com/documentation/wpdatacharts/google-charts/),
 20. [Global and ](https://wpdatatables.com/documentation/general/configuration/),
 21. [Column customization](https://wpdatatables.com/documentation/general/table-configuration-page-overview/#column-settings-display)

If, apart from creating tables based on the Forminator forms data, you would also
like to create tables from scratch or from other data sources, wpDataTables provides
more options for you:

 * **NEW!** Create tables from Nested JSON – [Text and video documentation](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wordpress-tables-from-nested-json-data-with-json-authentication/)
 * Create Simple tables from scratch – [Text and video documentation](https://wpdatatables.com/documentation/creating-new-wpdatatables-with-table-constructor/creating-a-simple-table-with-wpdatatables/)
 * Create tables from Excel – [Text and video documentation](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wpdatatables-from-excel/)
 * Create tables from CSV – [Text and video documentation](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wpdatatables-from-csv/)
 * Create tables from JSON – [Text and video documentation](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wpdatatables-from-json-input/)
 * Create tables from XML – [Text and video documentation](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wpdatatables-from-xml/)
 * Create tables from Serialized PHP array – [Text and video documentation](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wpdatatables-from-serialized-php-array/)

To check out the table on the front-end you can [insert wpDataTables shortcode in your page or post](https://wpdatatables.com/documentation/general/wpdatatables-shortcodes/)(
for example [wpdatatable id=1]) or with page widgets/blocks if you are using some
of the page builders like [WP Bakery](https://wpdatatables.com/documentation/table-features/visual-composer-integration/),
[Elementor](https://wpdatatables.com/documentation/general/elementor-integration/)
or [Gutenberg](https://wpdatatables.com/documentation/general/gutenberg-editor/).

**Limitation**
 Those tables do not have a server-side option (this means that these
tables can’t contain a large amount of data (no exact limit, but 2.000 – 3.000 rows
is a good example)), and that they cannot be editable.

## Screenshots

 * [[
 * Table from forms
 * [[
 * Table from quizzes
 * [[
 * Table from polls(for bar chart)
 * [[
 * Table from polls(for pie chart)
 * [[
 * Poll Bar chart
 * [[
 * Poll Pie chart
 * [[
 * Integration settings

## Installation

Installation of the plugin is straightforward.

 1. Make sure you have both wpDataTables and Forminator core plugins installed.
 2. Install using one of these options:
 3.  * Install directly from the WordPress Admin panel: go to Plugins -> Add New ->
       Search for “wpDataTables integration for Forminator forms”, and click the Install
       button.
     * Download the ZIP manually from WordPress’s plugins repository, and upload it
       through the WordPress Admin panel: go to Plugins -> Add New -> Upload Plugin,
       browse to the downloaded Zip and upload it.
     * Download the ZIP, extract it and manually upload the extracted folder through
       FTP to the `/wp-content/plugins/` directory of your WordPress installation.
 4. Activate the plugin through the ‘Plugins’ menu in WordPress.
 5. That’s it!

## Reviews

![](https://secure.gravatar.com/avatar/076efe95fc0ffc4fddde7bf6c1903d84662d7a44d2f908bed099aaf480a934e7?
s=60&d=retro&r=g)

### 󠀁[Works, good support](https://wordpress.org/support/topic/works-good-support-2/)󠁿

 [mbellmannmekos](https://profiles.wordpress.org/mbellmannmekos/) Meurth 12, 2024

We use the plugin for lunch orders on our intranet site. Works great and the support
team answers questions quickly.

![](https://secure.gravatar.com/avatar/6030e7d9bf045dc93b34fae202099b8300b029f03f4f4f5d15de7c571fcf5112?
s=60&d=retro&r=g)

### 󠀁[So simple!!](https://wordpress.org/support/topic/so-simple-92/)󠁿

 [diannakelly04](https://profiles.wordpress.org/diannakelly04/) Metheven 17, 2021

I wasn’t familiar with Forminator Forms until I found out about this new integration.
I installed both and so far the combination is fantastic. Collecting data with forms
is great, but being able to analyze that data and display it using the tables and
charts is even better. We can now create polls on our site and display the results
in a chart. Or store all our contact entries from our contact form in a table so
we can analyze our most common questions. And it’s so easy to do!

 [ Read all 2 reviews ](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/)

## Contributors & Developers

“wpDataTables integration for Forminator Forms” is open source software. The following
people have contributed to this plugin.

Contributors

 *   [ wpDataTables ](https://profiles.wordpress.org/wpdatatables/)

[Translate “wpDataTables integration for Forminator Forms” into your language.](https://translate.wordpress.org/projects/wp-plugins/wpdatatables-forminator)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/wpdatatables-forminator/),
check out the [SVN repository](https://plugins.svn.wordpress.org/wpdatatables-forminator/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/wpdatatables-forminator/)
by [RSS](https://plugins.trac.wordpress.org/log/wpdatatables-forminator/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.3.10

 * Compatibility with WordPress 6.9.4 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.9

 * Compatibility with WordPress 6.9 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.8

 * Compatibility with WordPress 6.9 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.8

 * Compatibility with WordPress 6.8.3 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.7

 * Compatibility with WordPress 6.8.2 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.6

 * Ensured full compatibility with wpDataTables.
 * Other small bug fixes and stability improvements.

#### 1.3.5

 * Compatibility with WordPress 6.8.1 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.4

 * Compatibility with WordPress 6.7.2 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.3

 * Compatibility with WordPress 6.6.2 approved.
 * Other small bug fixes and stability improvements.

#### 1.3.2

 * Bugfix: Fixed issue with PM time not showing correctly.
 * Compatibility with WordPress 6.5.3 version approved.
 * Other small bug fixes and stability improvements.

#### 1.3.1

 * Bugfix: Fixed issue with activation using the Lite wpDataTables version.
 * Other small bug fixes and stability improvements.

#### 1.3

 * Feature: Added support for Slider field (Single and Range).
 * Improvement: SEO improvement- Reduced unused css and js.
 * Other small bug fixes and stability improvements.

#### 1.2.2

 * Compatibility with WordPress 6.4.3 approved.
 * Other small bug fixes and stability improvements.

#### 1.2.1

 * Improvement: Deactivation plugin when wpDataTables or Forminator are not activated.
 * Compatibility with WordPress 6.2.2 approved.
 * Other small bug fixes and stability improvements.

#### 1.2

 * Feature: Added support for Group field
 * Improvement: Added new hooks for Email and Website fields
 * Compatibility with WordPress 6.1 approved.
 * Other small bug fixes and stability improvements.

#### 1.1.2

 * Bugfix: Fixed issue with showing placeholder tab
 * Compatibility with WordPress 6.0.2 approved.
 * Other small bug fixes and stability improvements.

#### 1.1.1

 * Compatibility with WordPress 5.9.3 approved.
 * Other small bug fixes and stability improvements.

#### 1.1

 * Bugfix: Fixed issue with not showing all forms, quizzes and polls for selection
 * Bugfix: Fixed issue with checkbox values if they are string
 * Bugfix: Fixed issue with not showing row grouping option
 * Bugfix: Fixed conflict with other wpDataTables form integration add-ons
 * Compatibility with WordPress 5.8.1 approved.
 * Other small bug fixes and stability improvements.

#### 1.0

 * Initial version for wp.org

## Meta

 *  Version **1.3.10**
 *  Last updated **2 weeks ago**
 *  Active installations **1,000+**
 *  WordPress version ** 4.0 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.4 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/wpdatatables-forminator/)
 * Tags
 * [form](https://cor.wordpress.org/plugins/tags/form/)[forminator](https://cor.wordpress.org/plugins/tags/forminator/)
   [quiz](https://cor.wordpress.org/plugins/tags/quiz/)[table](https://cor.wordpress.org/plugins/tags/table/)
 *  [Advanced View](https://cor.wordpress.org/plugins/wpdatatables-forminator/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  2 5-star reviews     ](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wpdatatables-forminator/reviews/)

## Contributors

 *   [ wpDataTables ](https://profiles.wordpress.org/wpdatatables/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/wpdatatables-forminator/)