
Bulk download all files from one or multiple Gravity Forms entries in one go.
This plugin is an add-on to the Gravity Forms form builder plugin.
It offers the opportunity to download all files from one or multiple Gravity Forms entries with one click.
Therefore, it adds a download link to the list view, and an extra download button to the single view of a Gravity Form entry and a Bulk Action.
All uploaded files are collected and downloadable in a single ZIP file.

Find the Bulk Download link by hovering a Gravity Forms entry in the list view

There is also a Bulk Action to download all files from multiple entries

An extra button is added by the plugin at the right sidebar in the detail view of an entry

A download link can be added to notifications using a merge tag

The form specific settings page to overwrite file and folder names
You can use the settings page from this option to overwrite the zip archive name. In this option you can also use merge tags from your form.
The plugin also offers a filter called bdfgf_download_filename which you can use to change the zip archive name.
You can find an example usage of this filter in a small plugin in a GIST.
You can use the settings page from this option to overwrite the folder name. In this option you can also use merge tags from your form.
The plugin also offers a filter called bdfgf_entry_filename which you can use to change the names.
You can find an example usage of this filter in a small plugin in a GIST.
Issues like these usually occur when your server has too low values for the memory_limit or max_execution_time.
The plugin provides the filters bdfgf_memory_limit and bdfgf_max_execution_time to change these values.
You can find example usage of the memory_limit filter and the max_execution_time filter in the two linked GISTs.
By default only logged in users with the gravityforms_view_entries capability are allowed to download files in bulk. You can use the bdfgf_download_permission filter to expand permission check.
The Plugin provides a filter bdfgf_single_entry_uploaded_files and an action bdfgf_after_uploaded_files to do this. You can add extra files to every single entry or to the whole zip archive beside the entries.
You can find example usage of the bdfgf_single_entry_uploaded_files filter and the bdfgf_after_uploaded_files action in the two linked GISTs.
Requires Plugins from plugin header because premium plugins are not supported at the momentRequires Plugins to plugin header for WP 6.5 and abovebdfgf_single_entry_uploaded_files to include extra files to a single or every subfolder inside the zip archive.bdfgf_after_uploaded_files to add one or more files into the zip archive after the folder passthrough the merge tags.gf_apply_filters() functions to allow filtering of values based on a form IDbdfgf_memory_limit to allow changes to the value.bdfgf_max_execution_time to allow changes to the value.bdfgf_download_filename to allow changes to the zip archive file name.bdfgf_entry_filename to allow changes to the entry folder names added to the zip archive.