Is there any easy way to remember user past choices? We hava now activated those steps:
1, user registration
2, auto login
3, we have a code which stop wordpress logging out users
and nr 4 must be funktion which remember user choices, soo if they come to our site after few weeks than they will see formular choices from last time…
With a logged in user, this is easy. You can pre-populate fields in the form by using these user meta merge tags as default values for any of the fields.
or
Or if you create an UPDATE USER feed for the User Registration add-on, and map those fields in the form to user meta keys, those fields will be automagically populated with information from the logged in user’s profile. If they change the value and submit the form, it updates the value stored in their user meta.
I don’t have a method for remembering choices that a user has made, before he has logged in. Sounds like a good application for cookies. That doesn’t have anything to do with Gravity Forms. You can however set the cookie using the gform_after_submission hook. Writing the code to set the cookie is up to you, but that is a good time to do it to remember those choices for the visitor who is not logged in.