-
Task
-
Resolution: Fixed
-
Should have
-
None
-
3
-
Forms
-
Sprint #210
-
pandora
Summary
In order to comply with any future personal data requests, we will enable by default the integration with the native WP export tool. This feature is provided already by default in Gravity Forms.
Requirements
- Enable the relevant feature under Form Settings > Personal Data by default.
Resources
- Retention Policy document
- Check initial research outcome in the comments of
PLANET-6739 - Check gform_form_update_meta hook that was suggested by GF support (see below).
Code example
add_filter( 'gform_form_update_meta', function( $meta, $form_id, $meta_name ) { GFCommon::log_debug( current_filter() . ': filtering personal data settings.' ); $meta['personalData']['retention']['policy'] = 'delete'; return $meta; }, 10, 3 );