<?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: FanaticWeb</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/fanaticweb'>fanaticweb</a></link>
		<description>Gravity Support Forums User Favorites: FanaticWeb</description>
		<language>en-US</language>
		<pubDate>Thu, 23 Apr 2026 14:59:38 +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>elurie on "A tutorial: How you can add user profile fields which get populated by GF,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-tutorial-how-you-can-add-user-profile-fields-which-get-populated-by-gf#post-234086</link>
			<pubDate>Thu, 02 May 2013 17:26:48 +0000</pubDate>
			<dc:creator>elurie</dc:creator>
			<guid isPermaLink="false">234086@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://wpicu.com/adding-and-storing-custom-user-meta-with-gravity-forms-user-registration-addon/&#34; rel=&#34;nofollow&#34;&#62;http://wpicu.com/adding-and-storing-custom-user-meta-with-gravity-forms-user-registration-addon/&#60;/a&#62;&#60;br /&#62;
this link has been suspended. I'd like to save custom user meta to the wp user-meta table (user profile).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>draney on "Post field to collect a web address as clickable URL"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-field-to-collect-a-web-address-as-clickable-url#post-233909</link>
			<pubDate>Thu, 02 May 2013 14:58:10 +0000</pubDate>
			<dc:creator>draney</dc:creator>
			<guid isPermaLink="false">233909@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Cool and Thanks pierski!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Post field to collect a web address as clickable URL"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-field-to-collect-a-web-address-as-clickable-url#post-233790</link>
			<pubDate>Thu, 02 May 2013 12:39:20 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">233790@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Very clean pierski :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Steve Napierski on "Post field to collect a web address as clickable URL"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-field-to-collect-a-web-address-as-clickable-url#post-233763</link>
			<pubDate>Thu, 02 May 2013 12:11:40 +0000</pubDate>
			<dc:creator>Steve Napierski</dc:creator>
			<guid isPermaLink="false">233763@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I modified your script to check the custom field before posting the URL. Now it looks to see if the URL begins with &#34;http://&#34; before posting it and if not it adds it to the URL.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php  if((get_post_meta($post-&#38;gt;ID, &#38;#39;website_link&#38;#39;, true))) {
$websiteLink = get_post_meta($post-&#38;gt;ID, &#38;#39;website_link&#38;#39;, true);
if(substr($websiteLink,0,7) == &#38;#39;http://&#38;#39;){ ?&#38;gt;
&#38;lt;p&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, &#38;#39;website_link&#38;#39;, true); ?&#38;gt;&#38;quot;&#38;gt;Click to view website &#38;amp;raquo;&#38;lt;/a&#38;gt;&#38;lt;/p&#38;gt;
&#38;lt;?php } else { ?&#38;gt;
&#38;lt;p&#38;gt;&#38;lt;a href=&#38;quot;http://&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, &#38;#39;website_link&#38;#39;, true); ?&#38;gt;&#38;quot;&#38;gt;Click to view website &#38;amp;raquo;&#38;lt;/a&#38;gt;&#38;lt;/p&#38;gt;
&#38;lt;?php } } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this does the job.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>draney on "Post field to collect a web address as clickable URL"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-field-to-collect-a-web-address-as-clickable-url#post-233636</link>
			<pubDate>Thu, 02 May 2013 10:25:27 +0000</pubDate>
			<dc:creator>draney</dc:creator>
			<guid isPermaLink="false">233636@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm using a form to create a draft post and need to collect a web address that will be a clickable URL. I have tried using a custom field and then my template pulls the the URL in to create a link in the body of the post with this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php  if((get_post_meta($post-&#38;gt;ID, &#38;#39;website_link&#38;#39;, true))) { ?&#38;gt;
   &#38;lt;p&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, &#38;#39;website_link&#38;#39;, true); ?&#38;gt;&#38;quot;&#38;gt;Click to view website &#38;amp;raquo;&#38;lt;/a&#38;gt;&#38;lt;/p&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But I get too many invalid URLs because some people leave off the http://. So I want to try using an advanced website field to collect the URL entry, but I don't want it to show a text URL in the post. If they enter a URL, I want it to be appended to the bottom of the post as a clickable link similar the way I am doing it now, with the actual URL hidden and just showing a generic &#34;Click Here&#34; type of link.&#60;/p&#62;
&#60;p&#62;How can I do this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johnathon4609 on "A tutorial: How you can add user profile fields which get populated by GF,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-tutorial-how-you-can-add-user-profile-fields-which-get-populated-by-gf#post-98388</link>
			<pubDate>Mon, 03 Dec 2012 14:00:08 +0000</pubDate>
			<dc:creator>johnathon4609</dc:creator>
			<guid isPermaLink="false">98388@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You bet, I hope it has helped.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "A tutorial: How you can add user profile fields which get populated by GF,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-tutorial-how-you-can-add-user-profile-fields-which-get-populated-by-gf#post-98105</link>
			<pubDate>Sun, 02 Dec 2012 22:47:06 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">98105@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for sharing that.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johnathon4609 on "A tutorial: How you can add user profile fields which get populated by GF,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-tutorial-how-you-can-add-user-profile-fields-which-get-populated-by-gf#post-98089</link>
			<pubDate>Sun, 02 Dec 2012 21:43:51 +0000</pubDate>
			<dc:creator>johnathon4609</dc:creator>
			<guid isPermaLink="false">98089@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://wpicu.com/adding-and-storing-custom-user-meta-with-gravity-forms-user-registration-addon/&#34; rel=&#34;nofollow&#34;&#62;http://wpicu.com/adding-and-storing-custom-user-meta-with-gravity-forms-user-registration-addon/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Here you go guys, ive seen alot of questions about getting gravity forms to populate user profile fields. This is how you do it!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>theslink2000 on "Read-only Field Help / Dynamically Populate a Section Break"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/read-only-field-help-dynamically-populate-a-section-break#post-66062</link>
			<pubDate>Fri, 13 Jul 2012 03:05:09 +0000</pubDate>
			<dc:creator>theslink2000</dc:creator>
			<guid isPermaLink="false">66062@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok whilst I never got a reply from an admin I have managed to get a working solution.  &#60;/p&#62;
&#60;p&#62;I couldn't get this to work to start with but after going back to it as a last resort after not getting a response here I have managed to get it functioning this time.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/terms-and-conditions-text-record-in-form-entries-database#post-25225&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/terms-and-conditions-text-record-in-form-entries-database#post-25225&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So combine that with the dynamic population between pages I outlined in my last post I have a working solution.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>theslink2000 on "Read-only Field Help / Dynamically Populate a Section Break"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/read-only-field-help-dynamically-populate-a-section-break#post-65790</link>
			<pubDate>Wed, 11 Jul 2012 12:22:27 +0000</pubDate>
			<dc:creator>theslink2000</dc:creator>
			<guid isPermaLink="false">65790@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kind of a bump but I've got something to add as well.&#60;/p&#62;
&#60;p&#62;I've managed to get my whole form to populate hidden post fields on the same page using this JQuery &#60;a href=&#34;http://pastie.org/4230744&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/4230744&#60;/a&#62; but the field I've described to start with (the textarea, read only field) doesn't work with this.  The reason being it is dependent on the source field being clicked in to fire the script, if you click on the field first it will the populate when you click again (anywhere).  I'm sure there's something I can do with the gform_pre_submission hook but I can't get anywhere with it.&#60;/p&#62;
&#60;p&#62;Anyone got any ideas?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
