Hello, good time, does anyone know how to output the content of several columns in one column?
chrishajer
(Chris (Gravity Forms))
July 25, 2022, 5:20pm
#2
Hello Saeed. You can use the gform_export_field_value()
filter for that:
Use this filter override the field value before it is included in the .csv export. This filter can be used in conjunction with the gform_export_fields filter to include custom columns in the export.
Est. reading time: 4 minutes
Hello, thanks, I just don’t understand where should I use this?
chrishajer
(Chris (Gravity Forms))
July 26, 2022, 5:40pm
#4
The code you write to use that filter will go in your theme functions.php file or a custom functionality plugin. See this article for additional information about adding PHP code to your site:
In this article, we will show you where you should typically place code that is within our documentation.
Est. reading time: 3 minutes
Thank you.