<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: How to populate the form with one link title?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-to-populate-the-form-with-one-link-title</link>
		<description>Gravity Support Forums Topic: How to populate the form with one link title?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 02:44:28 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/how-to-populate-the-form-with-one-link-title" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "How to populate the form with one link title?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-populate-the-form-with-one-link-title#post-67297</link>
			<pubDate>Fri, 20 Jul 2012 18:29:22 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">67297@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You could use the gform_pre_render hook and instead of having your query string be long like that, you could have smaller ones that are translated into longer entities as the form is loading...&#60;/p&#62;
&#60;p&#62;So something like&#60;br /&#62;
mysite.com/?product=912 &#60;/p&#62;
&#60;p&#62;If product = 912 then field1 = &#34;Cool Product&#34;&#60;/p&#62;
&#60;p&#62;Then in the gform_pre_render hook, you would either have a list of what those codes meant and then assign the value to the form field or you would put the values in a database and look it up in your table and push the returned value into your form field.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_render&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_render&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fernando on "How to populate the form with one link title?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-populate-the-form-with-one-link-title#post-67296</link>
			<pubDate>Fri, 20 Jul 2012 18:00:33 +0000</pubDate>
			<dc:creator>fernando</dc:creator>
			<guid isPermaLink="false">67296@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Cheers David, &#60;/p&#62;
&#60;p&#62;Not that good, but I can my way around it through testing, and testing... and more testing :) If there is a way to make this &#34;cleaner&#34;, I am all for it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "How to populate the form with one link title?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-populate-the-form-with-one-link-title#post-67250</link>
			<pubDate>Fri, 20 Jul 2012 12:41:49 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">67250@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes but it would require php coding and theme editing to make possible. Are you comfortable with php?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fernando on "How to populate the form with one link title?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-populate-the-form-with-one-link-title#post-67245</link>
			<pubDate>Fri, 20 Jul 2012 12:06:44 +0000</pubDate>
			<dc:creator>fernando</dc:creator>
			<guid isPermaLink="false">67245@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Cheers David, it works. &#60;/p&#62;
&#60;p&#62;Right now I have &#34;mysite.com/?product=500 Business Cards at 22 Euros&#34;, so my visitors see what they're buying (at bottom of the form), but the URL is a mess.&#60;/p&#62;
&#60;p&#62;Is there a way to put that information somewhat &#34;hidden&#34;, so the URL gets cleaner?&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "How to populate the form with one link title?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-populate-the-form-with-one-link-title#post-67241</link>
			<pubDate>Fri, 20 Jul 2012 11:36:22 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">67241@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In your link, add a query string. Eg example.com/form/?product=item1&#60;/p&#62;
&#60;p&#62;In your form, change your field under advanced to allow populate dynamically and give it a parameter of product. Then it should work for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fernando on "How to populate the form with one link title?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-populate-the-form-with-one-link-title#post-67235</link>
			<pubDate>Fri, 20 Jul 2012 11:03:14 +0000</pubDate>
			<dc:creator>fernando</dc:creator>
			<guid isPermaLink="false">67235@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello, &#60;/p&#62;
&#60;p&#62;Sorry if this a basic question but can't find any answer. &#60;/p&#62;
&#60;p&#62;I need my visitors to choose products Link 1, Link 2 or Link 3, (these are variations of a product) and when they click the chosen link they go straight to the form. &#60;/p&#62;
&#60;p&#62;In my form, I have a text field called &#34;your chosen product&#34; and I need this automatically populated with the Link Title they previously clicked (hope it makes sense!).&#60;/p&#62;
&#60;p&#62;How can I retrieve this into the form?&#60;/p&#62;
&#60;p&#62;Much appreciated!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
