<?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 User Favorites: trewknowledge</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/trewknowledge'>trewknowledge</a></link>
		<description>Gravity Support Forums User Favorites: trewknowledge</description>
		<language>en-US</language>
		<pubDate>Fri, 03 Apr 2026 21:03:16 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "Capture http referrer url in hidden field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/capture-http-referrer-url-in-hidden-field#post-62385</link>
			<pubDate>Wed, 13 Jun 2012 07:17:20 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">62385@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;vmanepete - If you set the default value to be the HTTP Ref URL, then you shouldn't need to do what I listed above. Though double check that it gets picked up properly and sent along.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vmanepete on "Capture http referrer url in hidden field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/capture-http-referrer-url-in-hidden-field#post-62363</link>
			<pubDate>Tue, 12 Jun 2012 23:48:33 +0000</pubDate>
			<dc:creator>vmanepete</dc:creator>
			<guid isPermaLink="false">62363@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;David,&#60;/p&#62;
&#60;p&#62;I tried implementing this with ZOHO CRM. Looks like, when adding the HIdden Field to your form you may have to also select &#34;HTTP Refererl URL&#34; under Insert Merge Tag dropdown. &#60;/p&#62;
&#60;p&#62;Is this correct?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>silverscape on "Capture http referrer url in hidden field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/capture-http-referrer-url-in-hidden-field#post-59158</link>
			<pubDate>Wed, 16 May 2012 12:09:50 +0000</pubDate>
			<dc:creator>silverscape</dc:creator>
			<guid isPermaLink="false">59158@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks so much for the quick reply! I will give this go and revert back to you.....I appreciate the step-by-step approach!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Capture http referrer url in hidden field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/capture-http-referrer-url-in-hidden-field#post-59157</link>
			<pubDate>Wed, 16 May 2012 11:51:51 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">59157@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi J,&#60;/p&#62;
&#60;p&#62;So there are a few simple steps that I can help you with. &#60;/p&#62;
&#60;p&#62;FORM SET-UP&#60;br /&#62;
You will need a field to put in the referrer URL so that it gets saved to the entries table in Gravity Forms. &#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Create a Hidden Field in your Form. (Hidden FIelds are in the Standard Fields set)&#60;/li&#62;
&#60;li&#62; Give it a label (Ref URL) - The label isn't important but helpful&#60;/li&#62;
&#60;li&#62; Under the Advanced Tab, click the check box for Allow Field to be Populated Dynamically&#60;/li&#62;
&#60;li&#62;Give it a Parameter Name (refurl)&#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;FUNCTIONS.PHP Changes&#60;br /&#62;
You will need to create a function to grab the referrer URL and pass it to the hidden field.&#60;/p&#62;
&#60;p&#62;#1 - In your theme's function.php file you will need to create a filter using the gform_field_value_$parameter_name hook: &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_field_value_$parameter_name&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_field_value_$parameter_name&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It will look like the following:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_field_value_refurl&#38;quot;, &#38;quot;referral_url&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As you can see, I used the parameter name that I put in above (refurl). &#60;/p&#62;
&#60;p&#62;#2 - Next we will need to code the referral_url function to grab the URL and then put it into the hidden field.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function referral_url($form){
	//Grab URL from HTTP Server Var and put it into a variable
	$refurl = $_SERVER[&#38;#39;HTTP_REFERER&#38;#39;];

	//Return that value to the form
	return esc_url_raw($refurl);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;FINAL NOTES&#60;br /&#62;
Now, if everything has been done correctly, when the form is loaded, the function will be called to grab the referral page and put the value into a hidden field. Then when you look at your entries, you should see which page lead them to your form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>silverscape on "Capture http referrer url in hidden field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/capture-http-referrer-url-in-hidden-field#post-59155</link>
			<pubDate>Wed, 16 May 2012 11:13:21 +0000</pubDate>
			<dc:creator>silverscape</dc:creator>
			<guid isPermaLink="false">59155@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I wish to capture the url of the referring url prior to landing on the form page.&#60;/p&#62;
&#60;p&#62;I note that there is a merge field called 'embed url' but oddly no 'referral url' which I would think would be a standard, powerful feature of Gravity forms?&#60;/p&#62;
&#60;p&#62;This suggests there is some additional coding / jquery to do in the headers etc which I am reluctant to do :)&#60;/p&#62;
&#60;p&#62;Can anyone provide a step-by-step dummy proof mechanism to capture the referral url in my existing form without jumping through too many hoops?&#60;/p&#62;
&#60;p&#62;Thanks so much&#60;br /&#62;
J
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jrothca on "Passing Geo Location to Gravity Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/passing-geo-location-to-gravity-form#post-51985</link>
			<pubDate>Sat, 10 Mar 2012 18:49:22 +0000</pubDate>
			<dc:creator>jrothca</dc:creator>
			<guid isPermaLink="false">51985@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here's how I did it.&#60;br /&#62;
Save lat long data to wordpress&#60;br /&#62;
1. Set gravity form to save the lat and long data to the wordpress custom fields 'geo_latitude' and 'geo_longitude'  (without the quotes, these (2) field names are supported by many geo location plugins for wordpress)&#60;br /&#62;
Display location data in the post&#60;br /&#62;
1. I used the plugin Geo Mashup. You can use others as long as they support Wordpress Geodata Meta Fields .  In the general setting you need to turn on 'Copy Geodata Meta Fields' (turning this on enables the plugin to use the lat and long data that is saved in the custom fields you created above)&#60;br /&#62;
2. Use one of Geo Mashup's many shortcodes or template tags to display the location data in your post.  Use the template tags in your php files to have the location data automatically displayed to  posts or index page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stuarthenshall on "Passing Geo Location to Gravity Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/passing-geo-location-to-gravity-form#post-51859</link>
			<pubDate>Fri, 09 Mar 2012 09:49:54 +0000</pubDate>
			<dc:creator>stuarthenshall</dc:creator>
			<guid isPermaLink="false">51859@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok.. Some questions. My intent was to capture longitude and latitude (as above) and then use the CustomFields plug-in for gravity forms to add a geolocation element to the post. CustomFields recognizes the Wordpress Geolocation plug-in. As the form is submitted the blog post is created. &#60;/p&#62;
&#60;p&#62;However, the location data isn't posted with the blog? Help appreciated. Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stuarthenshall on "Passing Geo Location to Gravity Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/passing-geo-location-to-gravity-form#post-51841</link>
			<pubDate>Fri, 09 Mar 2012 07:38:36 +0000</pubDate>
			<dc:creator>stuarthenshall</dc:creator>
			<guid isPermaLink="false">51841@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for sharing! This worked for me and happened to be the same approach I'd been going down. I think geolocation should be supported more easily with gravity forms.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jrothca on "Passing Geo Location to Gravity Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/passing-geo-location-to-gravity-form#post-48369</link>
			<pubDate>Sat, 04 Feb 2012 23:00:18 +0000</pubDate>
			<dc:creator>jrothca</dc:creator>
			<guid isPermaLink="false">48369@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I figured it out.  It's most likely hack.  If a GF employee could explain how to use hooks to do this, it would be helpful.&#60;/p&#62;
&#60;p&#62;This is what I did to get it to work.&#60;br /&#62;
I put this in my header file to have the script loaded:&#60;br /&#62;
'&#38;lt;script src=&#34;http://www.google.com/jsapi&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;br /&#62;
    &#38;lt;script&#38;gt;&#60;br /&#62;
      google.load(&#34;jquery&#34;, &#34;1.4.1&#34;);&#60;br /&#62;
    &#38;lt;/script&#38;gt;'&#60;/p&#62;
&#60;p&#62;I put this in my page template that has the gravity form on it.&#60;br /&#62;
'&#38;lt;script&#38;gt;&#60;br /&#62;
        navigator.geolocation.getCurrentPosition(&#60;br /&#62;
          function(pos) {&#60;br /&#62;
            $(&#34;#input_1_12&#34;).val(pos.coords.latitude);&#60;br /&#62;
            $(&#34;#input_1_13&#34;).val(pos.coords.longitude);&#60;br /&#62;
          }&#60;br /&#62;
        );&#60;br /&#62;
      &#38;lt;/script&#38;gt;'&#60;/p&#62;
&#60;p&#62;The input_1_12 &#38;amp; input_1_13 variables correspond to the 'input ID' the gravity form creates. When the page loads the browser dynamically populates the form with input ID input_1_12 for latitude &#38;amp; input_1_13 for longitude.&#60;/p&#62;
&#60;p&#62;The input_1_12 number will very depending on how many GF's you've created and how many input fields you have on your form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fred Romano on "Forms in Thickbox"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-in-thickbox#post-48365</link>
			<pubDate>Sat, 04 Feb 2012 21:18:12 +0000</pubDate>
			<dc:creator>Fred Romano</dc:creator>
			<guid isPermaLink="false">48365@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am doing this on my site. Try using the Easy FancyBox plugin then set your link up like this example:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;a title=&#38;quot;Contact Us&#38;quot; href=&#38;quot;#fancyboxID-1&#38;quot; rel=&#38;quot;nofollow&#38;quot;&#38;gt;Ask a Question&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then you need to add this code to page...&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;div style=&#38;quot;display:none&#38;quot; class=&#38;quot;fancybox-hidden&#38;quot;&#38;gt;&#38;lt;div id=&#38;quot;fancyboxID-1&#38;quot;&#38;gt;[gravityform id=&#38;quot;1&#38;quot; ajax=&#38;quot;true&#38;quot;]&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Of course change your gravity form id number to match your form. You can see an example on my site &#60;a href=&#34;http://flatfeerealty.com/contact/&#34; rel=&#34;nofollow&#34;&#62;http://flatfeerealty.com/contact/&#60;/a&#62; then click the button in the left box. &#60;/p&#62;
&#60;p&#62;Here is a link for reference &#60;a href=&#34;http://websitesetuppro.com/how-to-open-gravity-forms-form-in-a-lightbox/&#34; rel=&#34;nofollow&#34;&#62;http://websitesetuppro.com/how-to-open-gravity-forms-form-in-a-lightbox/&#60;/a&#62;. Hope that helps you out.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
