<?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: Pre-select dropdown field option (pass variable)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/pre-select-dropdown-field-option-pass-variable</link>
		<description>Gravity Support Forums Topic: Pre-select dropdown field option (pass variable)</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 19:57:25 +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/pre-select-dropdown-field-option-pass-variable" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Pre-select dropdown field option (pass variable)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-select-dropdown-field-option-pass-variable#post-80935</link>
			<pubDate>Sun, 14 Oct 2012 21:46:51 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80935@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;How are the links being created with the first and last names now?  Can you post a link to the page where the link exists so we can see what it looks like?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Pre-select dropdown field option (pass variable)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-select-dropdown-field-option-pass-variable#post-80916</link>
			<pubDate>Sun, 14 Oct 2012 19:32:40 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">80916@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Dropdown field is set to &#34;populate dynamically&#34; with the right parameter.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Pre-select dropdown field option (pass variable)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-select-dropdown-field-option-pass-variable#post-80914</link>
			<pubDate>Sun, 14 Oct 2012 19:31:40 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">80914@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there,&#60;br /&#62;
my dropdown lists the names like this &#34;First Last1&#34;, &#34;First Last2&#34;. They're not split between first/last name fields (and I'd prefer to keep it that way because I also ask for the visitor's name and it would be too confusing to have 2 first and last name fields).&#60;/p&#62;
&#60;p&#62;I'm able to pass the name to a plain text field, but not to a dropdown, even though the name matches what's in the list exactly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Pre-select dropdown field option (pass variable)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-select-dropdown-field-option-pass-variable#post-80905</link>
			<pubDate>Sun, 14 Oct 2012 19:10:50 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80905@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Do you have a link to the page where the list exists, and where your form exists?&#60;/p&#62;
&#60;p&#62;If you are already populating the link with the first and last name, you're in good shape.  Your link just needs to add the query string to it, to send those values to the form.  There are two parts to this: you have to configure the form fields to allow the name to be populated dynamically, and then you need to actually send those values to the form with the same parameter name. &#60;/p&#62;
&#60;p&#62;Your link will look something like this:&#60;br /&#62;
&#60;a href=&#34;http://example.com/form-page/?fn=FirstName&#38;amp;ln=LastName&#34; rel=&#34;nofollow&#34;&#62;http://example.com/form-page/?fn=FirstName&#38;amp;ln=LastName&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then, in the form, on the advanced tab for the name field, check &#34;Allow field to be populated dynamically&#34; and in the First and Last name parameter field, enter &#60;strong&#62;fn&#60;/strong&#62; and &#60;strong&#62;ln&#60;/strong&#62;.&#60;/p&#62;
&#60;p&#62;That way, clicking on the link will preselect the first and last name in your drop down.&#60;/p&#62;
&#60;p&#62;The name in your drop down will need to match exactly the name as it comes in the query string or it won't be preselected.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Pre-select dropdown field option (pass variable)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-select-dropdown-field-option-pass-variable#post-80382</link>
			<pubDate>Thu, 11 Oct 2012 17:03:04 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">80382@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to achieve the following:&#60;/p&#62;
&#60;p&#62;I have a link CLICK TO ASK [NAME] A QUESTION. [NAME] is automatically pulled in from Wordpress (First name or First+Last, I can get both to work). I want to pass that as variable into a form on another page.&#60;/p&#62;
&#60;p&#62;On the page where there's a form, I have a dropdown field listing these names in &#34;First+Last&#34; format.&#60;/p&#62;
&#60;p&#62;Is it possible to pre-select a name in the dropdown based on what is passed on?&#60;/p&#62;
&#60;p&#62;Just to clarify, the challenge here is that I can't enter &#60;code&#62;?name=name goes here&#60;/code&#62; manually, it has to be matched up from what Wordpress outputs (first+last) to a variable in the dropdown. Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
