Title: Exporting encrypted forms
Last modified: March 4, 2020

---

# Exporting encrypted forms

 *  Resolved [billyqureshi](https://wordpress.org/support/users/billyqureshi/)
 * (@billyqureshi)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/exporting-encrypted-forms/)
 * Hello
    I use a plug in called Gravity Forms Encrypted Fields. This results in
   forms exported using GF Entries in Excel being encrypted. Is there a workaround
   for this? I imagine there wont be but I just thought id ask the questions! thanks,

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Doeke Norg](https://wordpress.org/support/users/doekenorg/)
 * (@doekenorg)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/exporting-encrypted-forms/#post-12507554)
 * Hi [@billyqureshi](https://wordpress.org/support/users/billyqureshi/) Maybe there
   is. Could you provide a copy of the plugin? Please send it to [info@gfexcel.com](https://wordpress.org/support/topic/exporting-encrypted-forms/info@gfexcel.com?output_format=md).
   ik take a look.
 *  Plugin Author [Doeke Norg](https://wordpress.org/support/users/doekenorg/)
 * (@doekenorg)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/exporting-encrypted-forms/#post-12535557)
 * Fixed behind the scenes.
 * For anyone else running into this issue, the following code should help you out.
 *     ```
       // Try do decrypt values for Excel.
       if (strpos($_SERVER['REQUEST_URI'], '/gf-entries-in-excel/') === 0) {
           add_filter('gform_get_input_value', static function ($value, $entry, $field) {
               // disable encrypting to show no encrypted values.
               $field->encryptField = false;
               return $value;
           }, 9, 3);
   
           // return the encrypted value instead of the masking
           add_filter('option_gfe_show_encryption', '__return_true');
   
           // decrypt if necessary.
           add_filter('gfexcel_export_field_value', static function ($value) {
               return gfef_decrypt($value);
           });
       }
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Exporting encrypted forms’ is closed to new replies.

 * ![](https://ps.w.org/gf-entries-in-excel/assets/icon.svg?rev=3434379)
 * [GravityExport Lite for Gravity Forms](https://wordpress.org/plugins/gf-entries-in-excel/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gf-entries-in-excel/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gf-entries-in-excel/)
 * [Active Topics](https://wordpress.org/support/plugin/gf-entries-in-excel/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gf-entries-in-excel/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gf-entries-in-excel/reviews/)

## Tags

 * [encrypted](https://wordpress.org/support/topic-tag/encrypted/)
 * [encryption](https://wordpress.org/support/topic-tag/encryption/)

 * 2 replies
 * 2 participants
 * Last reply from: [Doeke Norg](https://wordpress.org/support/users/doekenorg/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/exporting-encrypted-forms/#post-12535557)
 * Status: resolved