Okay. I have a contact page on my site with a gravity form on it (id=1)... and I want to link various pages on my site to THAT contact page, and have it fill in one of the form fields according to a custom field value located on the page that linked to it.
EXAMPLES
*Advertising Page*
example content: <a href="/contact" rel="nofollow">Click here</a> to request a media kit.
custom field: subject
custom field value: Media Kit Request
--- now those values magically populate the subject field of form id=1 located on the contact page ---
contact page forms subject line: Media Kit Request
*Store Page*
example content: Got an idea for an awesome tshirt? <a href="/contact" rel="nofollow">Let us know!</a>
custom field: subject
custom field value: T-Shirt Suggestion
--- now those values magically populate the subject field of form id=1 located on the contact page ---
contact page forms subject line: T-Shirt Suggestion
NOTES
• I have a custom field called 'subject'
• I have a field being allowed to populate dynamically in my form with 'subject' as the parameter name
• I realize my final links will need more than just <a href="/contact">
...just using it as an example to show its going to that page
• I understand how to make the 'subject' field from my form populate as the subject of a notification email
. . . . but how do I populate that subject field in my form based on a value from the referring page?