<?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 Tag: query string - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/tags/query-string</link>
		<description>Gravity Support Forums Tag: query string - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:25:35 +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/tags/query-string/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>dustin on "Position submit button in-line with responsive theme"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/position-submit-button-in-line-with-responsive-theme#post-361552</link>
			<pubDate>Thu, 04 Jul 2013 07:27:37 +0000</pubDate>
			<dc:creator>dustin</dc:creator>
			<guid isPermaLink="false">361552@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Guys,&#60;/p&#62;
&#60;p&#62;Need some help here please, &#60;/p&#62;
&#60;p&#62;Having trouble positioning the submit button in-line.&#60;/p&#62;
&#60;p&#62;There is a lot of info about this on your support forums which I've read, I've also tried my themes support forum among others.&#60;/p&#62;
&#60;p&#62;I'm very new to web development so forgive me if I've missed something.&#60;/p&#62;
&#60;p&#62;I would like to position the button inline &#38;amp; closer to the text input. &#60;/p&#62;
&#60;p&#62;The theme is responsive so the submit button needs to stay aligned at various page sizes.&#60;/p&#62;
&#60;p&#62;So far I have managed to re-position the submit button inline but can't align the button.&#60;/p&#62;
&#60;p&#62;Live Page: &#60;a href=&#34;http://my-boiler.info/&#34; rel=&#34;nofollow&#34;&#62;http://my-boiler.info/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;An image of what I'm trying to do - &#60;a href=&#34;http://my-boiler.info/re-position-submit-button.png&#34; rel=&#34;nofollow&#34;&#62;http://my-boiler.info/re-position-submit-button.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I've tried floating the footer to the right and using margin to target the button which works when viewing on a normal browser but not when resizing the page.&#60;/p&#62;
&#60;p&#62;The theme I'm using is Enfold responsive.&#60;/p&#62;
&#60;p&#62;The code I'm using -&#60;br /&#62;
* FORM BODY contains the main form content*/&#60;br /&#62;
body #gform_wrapper_1 .gform_body {&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
/*Postcode input*/&#60;br /&#62;
 #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=text] {&#60;br /&#62;
    position:relative;&#60;br /&#62;
    width:140px;&#60;br /&#62;
    height:50px;&#60;br /&#62;
    font-size:25px;&#60;br /&#62;
 }&#60;/p&#62;
&#60;p&#62;body #gform_wrapper_1 .gform_footer {&#60;br /&#62;
   display: inline-block;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/*Submit button*/&#60;br /&#62;
body #gform_wrapper_1 .gform_footer input[type=submit] {&#60;br /&#62;
   margin:0px 0px 0px 0px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Some selectors are empty, I've just included above to give an idea of what I've tried.&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>motto on "Use field values in URL when redirecting after form submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-field-values-in-url-when-redirecting-after-form-submission#post-329934</link>
			<pubDate>Tue, 18 Jun 2013 06:04:58 +0000</pubDate>
			<dc:creator>motto</dc:creator>
			<guid isPermaLink="false">329934@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It's possible to compose a query string with field values when submitting a form. By checking  &#34;Pass Field Data Via Query String&#34; field values can be used in a query string.&#60;/p&#62;
&#60;p&#62;However I was wondering if it's possible to compose a URL containing field values without using a query string.&#60;/p&#62;
&#60;p&#62;E.g. instead of redirecting to&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;&#60;a href=&#34;http://domain.ext/orders?id=&#34; rel=&#34;nofollow&#34;&#62;http://domain.ext/orders?id=&#60;/a&#62;{5:idfield}
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;after a form submission to I need to redirect to&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;&#60;a href=&#34;http://domain.ext/orders/&#34; rel=&#34;nofollow&#34;&#62;http://domain.ext/orders/&#60;/a&#62;{5:idfield}/&#60;/p&#62;
&#60;/blockquote&#62;
&#60;p&#62;So submitting a form with 42 in it's ID field, would redirect to &#60;a href=&#34;http://domain.ext/orders/42/&#34; rel=&#34;nofollow&#34;&#62;http://domain.ext/orders/42/&#60;/a&#62; instead of &#60;a href=&#34;http://domain.ext/orders?id=42&#34; rel=&#34;nofollow&#34;&#62;http://domain.ext/orders?id=42&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;P.S. I couldn't find any resource on the forum or FAQ, but that might be due to the fact that I'm not sure what to search for exactly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>simplexx on "Open form only with query string"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/open-form-only-with-query-string#post-320638</link>
			<pubDate>Thu, 13 Jun 2013 10:22:18 +0000</pubDate>
			<dc:creator>simplexx</dc:creator>
			<guid isPermaLink="false">320638@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to open a form only when there are values in the url? My visitors should only be able to open the form from the url i sent them in an email, (this url contains some very important values). The visitors should not be able to open the form without these parameters in the url. Is that possible?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>511 Capital on "Query string variable gets field label, not value"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-string-variable-gets-field-label-not-value#post-301378</link>
			<pubDate>Tue, 04 Jun 2013 11:37:52 +0000</pubDate>
			<dc:creator>511 Capital</dc:creator>
			<guid isPermaLink="false">301378@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm trying to pass the value (NOT label) of the selected &#38;lt;option&#38;gt; in a &#38;lt;select&#38;gt; form element. However, it's passing along the label of the &#38;lt;option&#38;gt; instead of the value.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>thissideupmedia on "Query String in HTML Fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-string-in-html-fields#post-250165</link>
			<pubDate>Mon, 13 May 2013 05:22:53 +0000</pubDate>
			<dc:creator>thissideupmedia</dc:creator>
			<guid isPermaLink="false">250165@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I manage to populate fields dynamically with query string, but how can i populate an HTML field.&#60;/p&#62;
&#60;p&#62;This is my link to the embedded gravity form:&#60;br /&#62;
&#60;a href=&#34;http://www.blueafrica.co.za/site-04-sc/gravity/?fn=William&#34; rel=&#34;nofollow&#34;&#62;http://www.blueafrica.co.za/site-04-sc/gravity/?fn=William&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And I would like to add a HTML field to the form that says:&#60;br /&#62;
Dear fn .....       Where the value for fn is taken from the url, in this case &#34;William&#34;&#60;/p&#62;
&#60;p&#62;Is this possible?&#60;/p&#62;
&#60;p&#62;Many thanks&#60;/p&#62;
&#60;p&#62;Schalk
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ppeak on "Text Confirmation and Querystring at the same time."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-confirmation-and-querystring-at-the-same-time#post-82099</link>
			<pubDate>Thu, 18 Oct 2012 18:12:14 +0000</pubDate>
			<dc:creator>ppeak</dc:creator>
			<guid isPermaLink="false">82099@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello All,&#60;/p&#62;
&#60;p&#62;I'm not a PHP master, but can hack it pretty well.&#60;/p&#62;
&#60;p&#62;The &#34;redirect&#34; option with query strings works really well as I'm passing data to a third-party system that needs a urlencoded querystring. &#60;/p&#62;
&#60;p&#62;However, I need to display a thank you message and send the url string in the background at the same time.&#60;/p&#62;
&#60;p&#62;I know i have to use something like &#34;gform_after_submission&#34; or &#34;gform_confirmation&#34;, but i'm having trouble from there. Can someone point me in the right direction?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ed on "Query String Redirect and post to email notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-string-redirect-and-post-to-email-notification#post-249988</link>
			<pubDate>Mon, 13 May 2013 03:10:40 +0000</pubDate>
			<dc:creator>Ed</dc:creator>
			<guid isPermaLink="false">249988@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a simple shopping cart that once purchase is made I need to pass form data to a query string to generate a license (which I can successfully do) but I also need to post the string out put inside the notification email and redirect the user to a thank you page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>havanaglam on "checkboxes - passing fields via query string issue"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-passing-fields-via-query-string-issue#post-244474</link>
			<pubDate>Thu, 09 May 2013 10:34:49 +0000</pubDate>
			<dc:creator>havanaglam</dc:creator>
			<guid isPermaLink="false">244474@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a form with a field of type 'Checkboxes' and 3 choices: 'pets', 'view', 'beach'. On submit, I need to pass the 3 choices values via query string to a service outside my domain, say &#60;a href=&#34;http://www.external-service.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.external-service.com/&#60;/a&#62;, so that my values become parameters in a GET request to this domain. &#60;/p&#62;
&#60;p&#62;For instance, if a user checks 'pets' and 'view', on submit I want this user to be redirected to:&#60;br /&#62;
 &#60;a href=&#34;http://www.external-service.com/?pets=1&#38;amp;view=1&#38;amp;beach=&#34; rel=&#34;nofollow&#34;&#62;http://www.external-service.com/?pets=1&#38;amp;view=1&#38;amp;beach=&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I tried to accomplish this by checking 'show values' box and then setting all my choices values to '1', but it wouldn't work.&#60;/p&#62;
&#60;p&#62;How can I accomplish this, then?&#60;/p&#62;
&#60;p&#62;Thank you very much
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mwsmedia on "Submit To Page?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/submit-to-page#post-141669</link>
			<pubDate>Mon, 04 Feb 2013 15:48:54 +0000</pubDate>
			<dc:creator>mwsmedia</dc:creator>
			<guid isPermaLink="false">141669@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I suspect this may have been covered (be surprised if it wasn't) so I'd be obliged to a link to an existing thread if there is one... here's my question:&#60;/p&#62;
&#60;p&#62;My client would like a very simple Name / Email address form (in a sidebar or footer) to, upon clicking &#34;submit,&#34; take the user to a dedicated page where they would then fill out more, optional fields.  Some &#34;must haves&#34; include:&#60;/p&#62;
&#60;p&#62;- The name and email address data carries over to the dedicated page&#60;br /&#62;
- ALL the information entered is added to a MailChimp mailing list (they're already using the MC plugin) *even if* the user doesn't add anything on the dedicated page.&#60;/p&#62;
&#60;p&#62;Any ideas on how to best execute this?&#60;/p&#62;
&#60;p&#62;Many thanks,&#60;/p&#62;
&#60;p&#62;Matt
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rcandela on "Using Query Strings on Redirect page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/using-query-strings-on-redirect-page#post-163369</link>
			<pubDate>Thu, 07 Mar 2013 13:22:44 +0000</pubDate>
			<dc:creator>rcandela</dc:creator>
			<guid isPermaLink="false">163369@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm new to query strings, and am trying to get data to post to a redirect page after submit.  On my site, I'm using gravity forms so users can purchase a service.  The form redirects to PayPal and all is well.  After confirmation of payment, they are redirected to a new page.  I've passed the query string to the redirect page, but have absolutely no idea how to post data in Wordpress to show the query string.  Call me a novice developer, I guess.&#60;/p&#62;
&#60;p&#62;Could you give me the walk through, on how to populate data on a new page (not in a form), using the query string parameters outlined in the form settings, redirect page.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
