GravityExport Lite for Gravity Forms

Description

GravityExport (Gravity Form Entries in Excel) is the ultimate no-hassle solution for exporting data from Gravity Forms.

Powerful new functionality is available with GravityExport! Save exports to FTP & Dropbox, export as PDF, and format exports for data analysis.

Learn more about GravityExport

Export entries using a secure URL

When you configure a new export, the plugin will generate a secure download URL that you can share with anyone who needs the data (No need to log in!). Reports will automatically update as new entries are added.

GravityExport Lite includes many features:

  • Limit access to downloads—either make a URL public or require users to be logged-in with correct permissions
  • Download reports from multiple forms at once
  • Export entry notes along with entries
  • Transpose data (instead of one entry per-row, it would be one entry per column)
  • Attach entry exports to notifications

Export Gravity Forms entries directly to Excel (.xlsx)

Export your entries directly to .xlsx format. No more wasting time importing your CSV files into Excel and re-configuring columns.

Export Gravity Forms submissions as CSV

If you’d prefer to have your reports generated as CSV, GravityExport Lite makes it easy.

Add search filters to the URL

Once you have your download URL, you can easily filter by date range and field value.

Configure export fields

Save time generating exports in Gravity Forms: Configure the fields that are included in your CSV or Excel export. No need to set up every time!

Documentation & support

If you have any questions regarding GravityExport Lite, check out our documentation.

If you need further assistance, read this first and our support team will gladly give you a helping hand!

Requirements

  • PHP 7.2
  • php-xml and php-zip libraries. The plugin will check for those.
  • Gravity Forms 2.5 or higher

Gain additional powerful functionality

The full version of GravityExport unlocks these game-changing features:

  • ?? PDF Export
    GravityExport supports exporting entries as PDF! You can choose to have a PDF generated for each entry or one PDF that includes all entries. You can also customize the PDF output by adjusting the size, orientation, and more.
  • ?? Dropbox integration
    Save your form data directly to Dropbox.
  • ??????? Send reports to FTP
    Store reports on your own FTP server! GravityExport supports the SFTP, FTP + SSL, and FTP protocols.
  • ?? Multiple download URLs
    Create multiple export URLs that output to different formats and include different fields.
  • ?? Export data ready for analysis
    Make it easier to process your Gravity Forms data by splitting fields with multiple values into different rows.

We’ve written an article that contains all you need to know about exporting data from Gravity Forms.

Credits

  • The GravityExport Lite plugin was created by Doeke Norg

Screenshots

  • A ‘GravityExport’ link is added to the form settings
  • There is your URL! Just copy and paste to the browser (or click the download button)
  • Or download it from the list via the bulk selector

Installation

This section describes how to install the plugin and get it working.

  1. Upload gravityexport-lite to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Go to Forms > Select a form > Settings > Results in Excel to obtain your URL
  4. Download that Excel file!

FAQ

I don’t want the metadata like ID, date, and IP in my file

No problem. You can use the gfexcel_output_meta_info or gfexcel_output_meta_info_{form_id} hooks to disable
this feature. Or (since version 1.4.0) you can select individual fields you want to exclude on the settings page.

Just add this to your functions.php:

add_filter( 'gfexcel_output_meta_info', '__return_false' );

I want to rename the labels, but only in Excel, how can I do this?

Sure, makes sense. You can override the label hooking into
gfexcel_field_label, gfexcel_field_label_{type}, gfexcel_field_label_{type}_{form_id} or
gfexcel_field_label_{type}{form_id}{field_id}

The field object is provided as parameter, so you can check for type and stuff programmatically.

How can I change the value of a field in Excel?

You can override the value by hooking into gfexcel_field_value, gfexcel_field_value_{type},
gfexcel_field_value_{type}_{form_id} or gfexcel_field_value_{type}_{form_id}_{field_id}

The entry array is provided as a parameter, so you can combine fields if you want.

Can I separate the fields of an address into multiple columns?

Great question! Yes you can! You can set it on the settings page, or make use of the following hooks to get that working:
gfexcel_field_separated_{type}{form_id}{field_id} where every variable is optional.

I have a custom field. Can your plugin handle this?

Yes it can, in multiple ways:

The default way the plugins renders output is by calling get_value_export on the field.
All Gravity Forms fields need that function, so make sure that is implemented.
The result is one column with the output combined to one cell per row.

But you can also make your own field renderer, like this:

  1. Make a class that extends GFExcel\Field\BaseField (recommended) or extends GFExcel\Field\AbstractField or implements GFExcel\Field\FieldInterface
  2. Return your needed columns and cells by implementing getColumns and getCells. (See AddressField for some inspiration)
  3. Add your class via the gfexcel_transformer_fields hook as: type => Fully Qualified Classname (e.g., $fields['awesome-type'] => 'MyTheme\Field\MyAwesomeField')

How can I change the downloaded file name?

By now you really should know you can change almost every aspect of this plugin. Don’t like the name?
Change it using the settings page, or by using the gfexcel_renderer_filename or gfexcel_renderer_filename_{form_id} hooks.

Also you can update title, subject and description metadata of the document by using
gfexcel_renderer_title({form_id}), gfexcel_renderer_subject(_{form_id}) and
gfexcel_renderer_description(
{form_id}).

Can I change the sort order of the rows?

Sure, why not. By default, we sort on date of entry in ascending order. You can change this, per form,
on the Form settings page (GravityExport Lite) under “General settings”.

I want to download directly from the forms table without the URL!

You’re in luck: for those situations we’ve added a bulk option on the forms table.
As a bonus, you can select multiple forms, and it will download all results in one file,
on multiple worksheets (!!!)

How can I disable the hyperlinks on URL-only cells?

You can disable the hyperlinks by using the gfexcel_renderer_disable_hyperlinks-hook.

//add this to your functions.php
add_filter('gfexcel_renderer_disable_hyperlinks','__return_true');

My numbers are formatted as a string, how can I change the cell type?

A number field is formatted as a number, but most fields default to a string.
As of this moment, there are 3 field types. Boolean,String and Numeric. You can set these per field.

//add this to your functions.php
use GFExcel\Values\BaseValue;

add_filter('gfexcel_value_type',function($type, $field) {
    if($field->formId == 1 && $field->id == 2) {
        //Possible values are 'bool', 'string' or 'numeric',
        //or, use the constant, preferred:
        return BaseValue::TYPE_NUMERIC; //TYPE_STRING, TYPE_BOOL
    }
}, 10, 2);

I’d like to add a hyperlink to a specific field

Since most values are Value Objects, we can interact with them, and trigger a setUrl function on a value.

//add this to your functions.php
add_filter('gfexcel_value_object',function($value, $field) {
    if($field->formId == 1 && $field->id == 2) {
        $value->setUrl('https://www.remarpro.com');
    }
}, 10, 2);

I’ve added some notes, where are they?

By default the notes are disabled for performance. If you’d like to add these to the row you can activate this like so:

//add this to your functions.php
add_filter('gfexcel_field_notes_enabled','__return_true');
//or
add_filter('gfexcel_field_notes_enabled_{formid}','__return_true'); // e.g., gfexcel_field_notes_enabled_2

How do I add colors? It’s all too boring in Excel.

Definitely! You get to change: text color, background color, bold and italic. If that is not enough, maybe you should add clip art!

//add this to your functions.php
add_filter('gfexcel_value_object', function (BaseValue $value, $field, $is_label) {
    // Need to know if this field is a label?
    if (!$is_label) {
        return $value;
    }

    $value->setColor('#ffffff'); //font color, needs a six character color hexcode. #fff won't cut it here.
    $value->setBold(true); // Bold text
    $value->setItalic(true); // Italic text (to be combined with bold)
    $value->setBackgroundColor('#0085BA'); // background color

    // $field is the GF_Field object, so you can use that too for some checks.
    return $value;
}, 10, 3);

I don’t have enough memory!

Yes, this can happen. Unfortunately, this isn’t something that can be fixed without modifying your server configuration.
As a default, WordPress allocates 40 MB of memory. Because the plugin starts the rendering pretty early, it has most of it available.
But every cell to be rendered (even if it’s empty) takes up about 1KB of memory. This means that you have (roughly)
40 MB * 1024 KB = 40,960 Cells. I say roughly, because we also use some memory for calculations and retrieving the data.
If you’re around this cell-count, and the renderer fails; try to upgrade the WP_MEMORY_LIMIT. Checkout WooCommerce’s Docs for some tips.

Can I hide a row, but not remove it?

You can hide a row by adding a hook. Checkout this example:

add_filter('gfexcel_renderer_hide_row', function ($hide, $row) {
     foreach ($row as $column) {
         if ($column->getFieldId() === 1 && empty($column->getValue())) {
             return true; // hide rows with an empty field 1
         }
     }
     return $hide; // don't forget me!
 }, 10, 2);

Reviews

March 9, 2022 6 replies
Good day, Awesome Plugin. Can we have Download as one file to be a link you can share, in case one don’t wanna keep coming in and out . Thanks for your Soonest Responds
September 30, 2021
Facilita la gestión y automatización de exportaciones, gran complemento
May 7, 2021
I installed the plugin and it has made a huge difference in my output files, no more converting an excel on my own after the fact. Can’t wait for the pro version! And Support is just Awesome. In this day and age great support is crucial, The Gravity Forms Entries in Excel team have gone above and beyond for sure. Cheers Doeke!
March 31, 2021
The developer went out of his way to help me figure out the “single entry” issue. I wanted to use Gravity Forms to develop a simple calculator and email the results in an Excel spreadsheet to the person who submitted the form. I would never have figured this out without the help of Doeke. He’s the best!!!
Read all 36 reviews

Contributors & Developers

“GravityExport Lite for Gravity Forms” is open source software. The following people have contributed to this plugin.

Contributors

“GravityExport Lite for Gravity Forms” has been translated into 3 locales. Thank you to the translators for their contributions.

Translate “GravityExport Lite for Gravity Forms” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

2.3.2 on October 14, 2024

  • Fixed: Added compatibility for servers that miss the iconv or mbstring PHP extension.
  • Fixed: Critical error when downloading an export file.

2.3.1 on July 4, 2024

  • Updated: Release to www.remarpro.com was missing files.

2.3.0 on July 4, 2024

  • Updated: PhpSpreadsheet to 1.19.0.
  • Enhancement: Added a gfexcel_renderer_csv_output_encoding hook to set the character encoding on the CSV.

2.2.0 on March 8, 2024

  • Added: Option to secure the download link embed shortcode with a secret key.
  • Added: New button to easily copy the download link embed shortcode.
  • Bugfix: Nested forms with missing entries could trigger a critical error.

2.1.0 on September 25, 2023

  • Bugfix: Data from the old nested form could be exported if the nested form was changed.
  • Bugfix: Nested form fields could end up in different columns.
  • Enhancement: Added global Use admin label setting.
  • Enhancement: Moved dependencies to a custom namespace to avoid collision with other plugins.
  • Added: German translation

Developer Updates:

  • Added: gk/gravityexport/settings/use-admin-labels hook.
  • Added: gk/gravityexport/field/use-admin-labels hook.
  • Added: gk/gravityexport/field/nested-form/export-field hook to dynamically add other nested form fields to the export.

Developers: This might be a breaking change to some plugins, if they directly reference any of the dependencies.

2.0.6 on July 29, 2023

  • Bugfix: Checkbox lists without values in the entry could cause problems on transposed exports.

2.0.5 on July 13, 2023

  • Bugfix: Single option survey fields were no longer exported.

2.0.4 on July 7, 2023

  • Bugfix: Prevents throwing errors on a malformed notification.

2.0.3 on June 7, 2023

  • Bugfix: Filtering on URL’s didn’t work on the old download URL structure anymore.

2.0.2 on June 5, 2023

  • Bugfix: Attachments could have the wrong fields.

2.0.1 on June 2, 2023

  • Bugfix: The notification for the migration could throw an exception in some instances.

2.0 on May 29, 2023

  • This is a major update! Enjoy the much nicer feed configuration interface!
  • Changed: The minimum version of Gravity Forms is now 2.5
  • Enhancement: Fields can now be enabled or disabled all at once on the form settings page.
  • Enhancement: Meta fields can now be (de)selected all at once on the plugin settings page.
  • Enhancement: Meta fields with array values are now properly deconstructed on export.
  • Enhancement: Added support for GravityPerks Media Library ID fields.
  • Enhancement: Upload fields can now split into multiple rows (GravityExport).
  • Security: Upload fields now show the private download URL to avoid enumeration on public files.

Developer Updates:

  • This is a major release behind the scenes; we have rewritten much of the plugin to better integrate with Gravity Forms feed add-on framework.
  • Modified: Changed the textdomain of the plugin to gk-gravityexport-lite.

1.11.4 on November 30, 2022

  • Enhancement: Added Entry ID as a sorting option. Useful when duplicate entry dates exist.
  • Bugfix: on PHP 8 an array value threw an error instead of silently failing.

1.11.3 on September 29, 2022

  • Enhancement: List fields column labels can now be manipulated by the gfexcel_field_label filter.

1.11.2 on July 19, 2022

  • Enhancement: Added date_updated as a default exported meta field.
  • Bugfix: Filtering using in and not in operators in the URL query string did not work.
  • Bugfix: Exported multiselect fields (e.g., checkboxes and nested forms) could be missing a separator between values if one value is a 0.

1.11.1 on June 20, 2022

  • Enhancement: Nested form field values are formatted properly through transformers.
  • Bugfix: Sort order of nested form fields could be swapped on some entries.
  • Bugfix: PDFs displaying field names as a vertical column could contain extra empty columns.
  • Bugfix: Download of nested forms could fail on PHP 8.

1.11 on January 31, 2022

  • Feature: Survey Likert fields can return the score instead of the value by applying the gfexcel_field_likert_use_score hook.
  • Enhancement: Updated all gfexcel_renderer_csv_* hooks to include the form id.
  • Bugfix: Possible errors when using gform_export_separator callbacks with 2 expected parameters.

1.10.1 on December 10, 2021

  • Bugfix: Fatal error when using the plugin with PHP <7.4.

1.10 on December 10, 2021

  • Enhancement: Support for Gravity Perks Nested Forms.
  • Enhancement: gfexcel_field_value filters will also be applied on subfields of separable fields.
  • Enhancement: gform_export_separator filter will also be used to determine the delimiter.
  • Enhancement: gform_include_bom_export_entries filter will also be used to determine BOM character use.
  • Bugfix: Default value of file upload was not available without saving the general settings once.
  • Bugfix: Gravity Perks: Live Preview (show hidden) would not work properly.

1.9.3 on September 30, 2021

  • Bugfix: Feed settings page would break when using Gravity Forms ≥2.5.10.1.

1.9.2 on September 13, 2021

  • Bugfix: Fatal error when using Gravity Forms ≤2.4.23.
    • We highly recommend upgrading to Gravity Forms >2.5.

1.9.1 on September 8, 2021

  • GravityExport Lite requires PHP 7.2
  • Bugfix: Fatal error when trying to download an export file.

1.9.0 on September 7, 2021

  • Gravity Forms Entries in Excel is now known as GravityExport Lite
    • Same plugin and functionality you love!
    • Internal code restructuring ensures better extensibility and facilitates new feature development (coming in future versions!)
    • Ready to be used with GravityExport that brings additional functionality to an already full-featured plugin.
  • Enhancement: Improved Gravity Forms 2.5 compatibility.

Developer Updates:

Please note that gfexcel_* hooks will be gradually renamed while retaining backward compatibility.

  • Enhancement: Removed all displayOnly fields from the export list like the normal export function.
  • Enhancement: Added a gfexcel_output_sorting_options filter to set sorting options.
  • Enhancement: Added a gfexcel_hash_form_id filter to get form ID from the unique URL hash value.
  • Enhancement: Added a gfexcel_hash_feed_data filter to get feed object from the unique URL hash value.
  • Enhancement: Added a gfexcel_get_entries_<form_id>_<feed_id> filter to override default logic responsible for querying DB entries.

1.8.14 on July 20, 2021

  • Enhancement: Improved usability on small screens and enhanced accessibility.
  • Bugfix: Incorrect or incomplete export of certain form field values (e.g., Gravity Forms Survey fields).

1.8.13 on June 10, 2021

  • Bugfix: Plugin would not activate on hosts running PHP 7.1.

1.8.12 on May 14, 2021

  • Enhancement: Updated PhpSpreadsheet to 1.17.
  • Enhancement: Added gfexcel_file_extension webhook to overwrite the extension (by default, .xlsx).
  • Enhancement: composer.json constraints updated for Bedrock users.
  • Bugfix: Removed deprecation warning on Gravity Forms 2.5.
  • Bugfix: Sort order is now saved again on Gravity Forms 2.5.
  • Bugfix: Improve button appearance on Gravity Forms 2.5.
  • Bugfix: Sanitized URLs with esc_url() in the dashboard.
  • Bugfix: Resolved some silent PHP warnings.

1.8.11

Not released on WordPress due to linter issues.

1.8.10 on April 13, 2021

  • Bugfix: Default combiner glue for List Fields was accidentally changed.
  • Bugfix: Mark baker dependencies no longer clash with other plugins using the same dependencies.

1.8.9

  • Conflict: Updated dependencies to resolve conflict with Visualizer.

1.8.8

  • Enhancement: Better support for checkbox fields.

1.8.7

  • Bugfix: Product quantity was set to 1 by default if the value was empty.

1.8.6

  • Bugfix: Resetting the form count could result in an error you would receive per email.

1.8.5

  • Enhancement: You can now sort by subfields like “last name” in a name field.
  • Enhancement: Hover state for sorting items.
  • Enhancement: Added form id to gfexcel_renderer_cell_properties hook.

1.8.4

  • Bugfix: Product field was unhappy without splitting fields.

1.8.3

  • Bugfix: Notification update sometimes produced error. No more happy emoticons.

1.8.2

  • Bugfix: Empty numeric values are not allowed by PhpSpreadsheet anymore. So much for SemVer ??
  • Bugfix: Product subfields were all parsed as currency. Now they are the correct type.

1.8.1

  • Bugfix: Numeric values were presented as currency by default.

1.8.0

  • Last version to support PHP 7.1. Next minor release will only support 7.2+.
  • Feature: Added setFontSize(?float $font_size) on value objects, so every cell can have a different font size.
  • Feature: Added setBorder($color, $position) on value objects to set a border on a cell.
  • Feature: Added CurrencyValue type and formatting on numeric cells. So you can have a currency symbol and a numeric value.
  • Feature: Added new CombinerInterface to streamline the process of combining values into columns.
  • Feature: Added notifications base to bomb you with info. Kidding, only useful messages of course.
  • Bugfix: ‘gfexcel_renderer_csv_include_separator_line’ had a typo.
  • Bugfix: List field threw notice when you changed the column names.
  • Bugfix: Disabled warning when set_time_limit is not allowed to prevent failing download.
  • Enhancement: Updated PhpSpreadsheet to 1.12 (last to support PHP 7.1).
  • Enhancement: Added quick-link to documentation on the plugins page.
  • Enhancement: Added quick-link to settings on the plugins page.
  • Enhancement: Replaced all translation calls with WordPress native calls to be polite to Poedit.
  • Enhancement: Added some unit tests.

1.7.5

  • Enhancement: Added some renderer hooks for CSV manipulation.
    • gfexcel_renderer_csv_delimiter -> default: ,
    • gfexcel_renderer_csv_enclosure -> default: "
    • gfexcel_renderer_csv_line_ending -> default: PHP_EOL
    • gfexcel_renderer_csv_use_bom -> default: false
    • gfexcel_renderer_csv_include_separator_line -> default: false

1.7.4

  • Bugfix: Setting a cell to bold no longer makes it italic too.

1.7.3

  • Bugfix: Download rights were not checked properly. No security risk, but it should work. ??

1.7.2

  • Bugfix: Custom filenames were not being showed by the field anymore.

1.7.1

  • Bugfix: Column-names now match the filters in the sortable lists.
  • Bugfix: Filters now only respond to the correct URL.
  • Bugfix: Forgot to update composer.json to reflect minimum PHP version of 7.1. (for Bedrock users).
  • Changed: Updated composer.json to use PhpSpreadsheet ~1.9.0 to be consistent with the normal plugin version.

1.7.0

  • Feature: Added field filtering to the URL. Checkout the documentation for more info.
  • Feature: Added support for Repeater fields.
  • Feature: Added download links for a single entry on the entry detail page.
  • Feature: Added download link to admin bar for recent forms.
  • Enhancement: Added a maximum column width via gfexcel_renderer_columns_max_width.
  • Enhancement: Added a gfexcel_renderer_wrap_text hook to disable wrapping text.
  • Enhancement: Added $form_id as an argument to gfexcel_output_search_criteria for convenience.
  • Enhancement: Added noindex, nofollow to the headers of the export, and added a Disallow to the robots.txt.
  • Enhancement: Added a gfexcel_download_renderer hook to inject a custom renderer.
  • Bugfix: Prevent notice at render-time for ob_end_clean.
  • Bugfix: Reset download hash and counter on duplicated form.
  • Updated: PhpSpreadsheet updated to 1.9.0. Package to ^1.3.

1.6.3

  • Bugfix: Radio and checkboxes caused unforeseen error on short tag for GF.

1.6.2

  • Bugfix: Referenced unavailable constant.
  • Bugfix: short code had an breaking edge case.

1.6.1

  • Security: Removed old style URL. If you were using it, please regenerate the URL.
  • Enhancement: Added [gfexcel_download_link id=2] short tag for WordPress and {gfexcel_download_link} for GF notification.
  • Enhancement: Added reset of download counter (also refactored all counter code to SRP class).
  • Enhancement: Added setting to format prices as numeric values.
  • Enhancement: Added a download event so you can append logic to the download moment.
  • Enhancement: Added CreatedBy field to easily change user_id to nickname or display_name. Use filter gfexcel_meta_created_by_property.
  • Bugfix: Stripping title could cut multibyte character in half, making the xlsx useless.
  • Bugfix: Removed start_date or end_date from date range filter when empty. Caused errors for some.
  • Bugfix: created_by and payment_date were not converted to the WordPress timezone.

1.6.0

  • Feature: The renderer now supports transposing, so that every column is a row and vice versa.
  • Feature: Added a date range filter. Also included as start_date and end_date query_parameters.
  • Feature: Added a “download” link per form on the Forms page. Fewer clicks for that file!
  • Feature: Hide a row by hooking into gfexcel_renderer_hide_row. Checkout the FAQ for more info.
  • Enhancement: All separable fields are handled as such, except for checkboxes. Made no sense.
  • Enhancement: Product and calculation have some specific rendering on single field for clarity.
  • Enhancement: Now supports Gravity Forms Chained Selects.
  • Enhancement: Querying entries in smaller sets to avoid massive database queries that can choke a database server.
  • Enhancement: Added a gfexcel_output_search_criteria filter to customize the search_criteria for requests.
  • Bugfix: Downloading files didn’t work on iOS.
  • Info: PHP 5.6 is no longer actively supported. Will probably still work; but 7.1 is the new minimum.
  • Info: Launched a (first version) documentation site! Check out gfexcel.com

1.5.5

  • Enhancement: Date fields now export the date according to its field setting.
  • Enhancement: Value Objects (BaseValue) can reference getField(), getFieldType() and getFieldId() to help with filtering.
  • Enhancement: Name fields can now also be split up in to multiple fields. Made this a generic setting on the settings page. Please re-save your settings!
  • Enhancement: Subfield labels can now also be overwritten with the gfexcel_field_value-hook.
  • Bugfix: Found a memory leakage in retrieving fields for every row. Will now be retrieved only once per file.
  • Bugfix: Custom Sub field labels were not exported.
  • Bugfix: I spelled ‘separate’ wrong, and therefore the hooks were also wrong. Please update your hooks If you use them!

1.5.4

  • Language: Finnish language files added thanks to @Nomafin!
  • Enhancement: Better inclusion of script and styles.
  • Enhancement: Renamed Results in Excel to Entries in Excel to be more consistent.
  • Enhancement: Added a quick link to settings from the plugins page.
  • Bugfix: Wrong minimum version of Gravity Forms set, should be 2.0.
  • Help: Added some help text to the global settings page. I need your input!

1.5.3

  • Enhancement: Added plugin settings page with plugin wide default settings
  • Enhancement: Added dependency checks to plugin, so without them, the plugin won’t work.
  • Bugfix: Prices were shown in html characters. Not really a bug, but it was bugging someone ??
  • Bugfix: Address field needed wrapping of value objects on separate fields.
  • Bugfix: Some fields were missing wrapping of value object.

1.5.2

  • Bugfix: Posting a form gave a 500 error, because of missing form info in front-end.

1.5.1

  • (Awesome) Feature: You can now set the order of the fields by sorting them, using drag and drop!
  • Feature: Add colors and font styles to cells by using the gfexcel_value_object-hook (See docs).
  • Feature: Attach a single entry file to a notification email.
  • Feature: We now support exports in CSV. Why? Because we can! (and also Harry asked me too).
  • Enhancement: You can now add .xlsx or .csv to the end of the URL, to force that output.
  • Enhancement: Added support for the Woocommerce add-on.
  • Enhancement: Added support for the Members plugin. You need ‘gravityforms_export_entries’ role for this plugin.
  • Bugfix: The extension did not match the renderer, which sometimes caused Excel to give a warning.
  • Bugfix: Lists with a single column could not be exported.

1.5.0

  • Failed upload. I wish WordPress would drop the ancient SVN approach!

1.4.0

  • Celebration: 1000+ active installations! Whoop! That is so awesome! Thank you for the support and feedback!
    As a celebration gift I’ve added some new settings, making the plugin more user-friendly, while maintaining developer-friendliness!
  • Feature / Security: Regenerate URL for a form, with fallback to old way. But please update all your URLs!
    This update also makes the slug more secure and unique by not using the (possibly default) NONCE_SALT.
  • Feature: Disable fields and metadata with checkboxes on the settings page. Can still be overwritten with the hooks.
  • Feature: Enable notes on the settings page. Can still be overwritten with the hook.
  • Feature: Added setting to set the custom filename. Can also still be overwritten with the hook.
  • Feature: Added error handling to provide better feedback and support.

1.3.1

  • Enhancement: Added notes per entry. Activate with gfexcel_field_notes_enabled.
  • Enhancement: Removed unnecessary files from the plugin to make it smaller.

1.3.0

  • Feature: Wrapped values in value objects, so we can be more specific in Excel for cell-type-hinting
  • Feature: NumberField added that uses the NumberValue type for Excel
  • Feature: Added filters to typehint cell values. See FAQ for more info.
  • Enhancement: updated cell > URL implementation. Each cell can be set individually now. See FAQ for more info.
  • Upgraded to PHP 5.6 for minimal dependency. Last version with PHP 5.3 was 1.2.3
    (sorry for the mix-up, the new renderer forced my hand, and I forgot about this, otherwise the versioning had gone up sooner.)

1.2.4

  • Enhancement: moved away from deprecated PhpExcel to PhpSpreadsheet (Thanks @ravloony).
  • Enhancement: composer.json update to wordpress-plugin for easier installation with bedrock.
  • Enhancement: Metadata now uses GFExport to get all metadata; so a row now has all metadata. Can still be disabled.
  • Feature: New ListField transformer. Splits list fields into its own Excel columns, with newline-separate values per column.
  • Feature: New meta fields transformer. Special filter hooks for meta fields with gfexcel_meta_value.
  • Feature: New meta subfield transformer for date_created. Use gfexcel_meta_date_created_separated to split date and time in 2 columns.
  • Bugfix: Plugin hooks later, so filters also work on bulk-download files.

1.2.3

  • Bugfix: Worksheets could contain invalid characters, and break download.
  • Last version to use PHP 5.3

1.2.2

  • Enhancement: If a cell only contains a URL, that URL is set as a link on that cell, for easy access.

1.2.1

  • Translation: Added Dutch translation + enabled possibility to translate via www.remarpro.com. You can help me out!
  • Enhancement: Worksheets now have a title, and of course a gfexcel_renderer_worksheet_title hook.

1.2.0

  • (Very cool) Feature: Download Excel output directly from forms table, and (drumroll), download multiple forms in one file!
  • Feature: Added gfexcel_field_disable filter to disable all fields you want. Fields will be filtered out before handling.
  • Feature: Added gfexcel_output_rows and gfexcel_output_columns filters to have more control over output. Thanks @mircobabini.
  • Feature: Added a setting for sort order per form. Also contains some hooks to override that work!

1.1.0

  • Feature: Download counter (starts counting as of this version)
  • Feature: SectionField added to disable empty section columns. Disabled by default. Enable with gfexcel_field_section_enabled hook (return true).
  • Feature: FileUploadField added to disable file upload columns. Enabled by default. Disable with gfexcel_field_fileuploads_enabled hook (return false).
  • Update: Wait until plugins are loaded. Need to be sure Gravity Forms is active. This caused a problem in some multisite implementations.
  • Bugfix: Changed the permalink registration so that it works with multisite combined with the GF API (thanks for the assist @zitomerh). No need to reactivate the plugin now.
  • Bugfix: In Standard URL permalink structure, the hash wasn’t escaped properly

1.0.2

  • Bugfix: Only 20 results were being returned by the GFAPI
  • The title of a form could not be longer than 31 characters

1.0.1

  • Updated readme
  • Removed unnecessary assets

1.0

  • First release
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17