I purchased the Gravity Forms developer license and activated the Partial entry addon. It is saving the partial entries, but how can I get the user back to the form where they can edit and complete the form?
There is a solution! Use these plugins:
Use this code in your functions.php to change the number of days link will be active:
add_filter( 'gform_incomplete_submissions_expiration_days','your_function_name', 10, 1 );
function your_function_name( $expiration_days ) {$expiration_days = 90; return $expiration_days;
}