I need to pre-fill out a gravity form with user details such as first and last name, email address etc. I know an easy way to do this was mentioned in this post here
But I would like to also include non-WP-standard user info such as Mailing Address, Biography and other custom user fields, which were added by a custom user profile plugin.
Is there a way to do do this easily using gravity forms?
This is possible with our GP Populate Anything Perk. You can populate the form fields with data from the User object, including custom fields.Here’s a tutorial documentation with details on how this works.
If you stored the information in the wp_usermeta table, you can get it out using the {user} merge tag. You need to know the key that was used when storing the value.
For example:
{user:mailing_address}
{user:bio}
If you have any other questions, please let us know.
Thank you Chris, I will try this by looking up MySQL tables on the backend, hopefully the 3rd party user profile plugin called “Ultimate Member” we are using will have modified the user meta data table in a way that makes these additional user fields available this way…