<?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: Make site and E-Mail links on Entries page</title>
		<link>https://legacy.forums.gravityhelp.com/topic/make-site-and-e-mail-links-on-entries-page</link>
		<description>Gravity Support Forums Topic: Make site and E-Mail links on Entries page</description>
		<language>en-US</language>
		<pubDate>Thu, 16 Apr 2026 21:09:01 +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/make-site-and-e-mail-links-on-entries-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Make site and E-Mail links on Entries page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/make-site-and-e-mail-links-on-entries-page#post-338</link>
			<pubDate>Thu, 10 Sep 2009 11:45:53 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">338@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This will be resolved in the 1.1 release.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Aaron Campbell on "Make site and E-Mail links on Entries page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/make-site-and-e-mail-links-on-entries-page#post-69</link>
			<pubDate>Wed, 26 Aug 2009 20:05:33 +0000</pubDate>
			<dc:creator>Aaron Campbell</dc:creator>
			<guid isPermaLink="false">69@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That's great!  Well, I put the patch in my last post, but if you'd rather have it sent by E-Mail or something that's a little cleaner, just let me know.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Make site and E-Mail links on Entries page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/make-site-and-e-mail-links-on-entries-page#post-63</link>
			<pubDate>Wed, 26 Aug 2009 17:59:26 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">63@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We plan on making the email and website both linkable in a future release.  It is on our to do list so we do plan on making this change.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Aaron Campbell on "Make site and E-Mail links on Entries page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/make-site-and-e-mail-links-on-entries-page#post-62</link>
			<pubDate>Wed, 26 Aug 2009 17:38:57 +0000</pubDate>
			<dc:creator>Aaron Campbell</dc:creator>
			<guid isPermaLink="false">62@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here is the patch to fix both issues if anyone is interested:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Index: gravityforms.php
===================================================================
--- gravityforms.php	(revision 23)
+++ gravityforms.php	(working copy)
@@ -2405,6 +2405,14 @@
                                             $value = self::format_date($value, false);// date(&#38;#39;Y/m/d \a\t H:i&#38;#39;, mysql2date(&#38;#39;G&#38;#39;, $value));
                                         break;

+                                        case &#38;quot;email&#38;quot; :
+											$value = &#38;quot;&#38;lt;a href=&#38;#39;mailto:&#38;quot; . self::escape_attribute($value) . &#38;quot;&#38;#39; alt=&#38;#39;E-Mail &#38;quot; . self::escape_attribute($value) .&#38;quot;&#38;#39; title=&#38;#39;E-Mail &#38;quot; . self::escape_attribute($value) . &#38;quot;&#38;#39;&#38;gt;&#38;quot; . self::escape_text($value) . &#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
+                                        break;
+
+                                        case &#38;quot;website&#38;quot; :
+											$value = &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot; . self::escape_attribute($value) . &#38;quot;&#38;#39; alt=&#38;#39;Visit &#38;quot; . self::escape_attribute($value) .&#38;quot;&#38;#39; title=&#38;#39;Visit &#38;quot; . self::escape_attribute($value) . &#38;quot;&#38;#39;&#38;gt;&#38;quot; . self::escape_text($value) . &#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
+                                        break;
+
                                         default:
                                             $value = self::escape_text($value);
                                     }
@@ -2905,13 +2913,13 @@
                 switch($field[&#38;quot;nameFormat&#38;quot;]){

                     case &#38;quot;extended&#38;quot; :
-                        return sprintf(&#38;quot;&#38;lt;div class=&#38;#39;ginput_complex&#38;#39;&#38;gt;&#38;lt;span class=&#38;#39;name_prefix&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.2&#38;#39; id=&#38;#39;input_%d.2&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.2&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Prefix&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;name_first&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.3&#38;#39; id=&#38;#39;input_%d.3&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.3&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;First&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;name_last&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.6&#38;#39; id=&#38;#39;input_%d.6&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.6&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Last&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;name_suffix&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.8&#38;#39; id=&#38;#39;input_%d.8&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.8&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Suffix&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;, $id, $id, $prefix, self::$tab_index++, $disabled_text, $id, $id, $id, $first, self::$tab_index++, $disabled_text, $id, $id, $id, $last, self::$tab_index++, $disabled_text, $id, $id, $id, $suffix, self::$tab_index++, $disabled_text, $id);
+                        return sprintf(&#38;quot;&#38;lt;div class=&#38;#39;ginput_complex&#38;#39;&#38;gt;&#38;lt;span class=&#38;#39;name_prefix&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.2&#38;#39; type=&#38;#39;text&#38;#39; id=&#38;#39;input_%d.2&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.2&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Prefix&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;name_first&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.3&#38;#39; type=&#38;#39;text&#38;#39; id=&#38;#39;input_%d.3&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.3&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;First&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;name_last&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.6&#38;#39; type=&#38;#39;text&#38;#39; id=&#38;#39;input_%d.6&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.6&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Last&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;name_suffix&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.8&#38;#39; type=&#38;#39;text&#38;#39; id=&#38;#39;input_%d.8&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.8&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Suffix&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;, $id, $id, $prefix, self::$tab_index++, $disabled_text, $id, $id, $id, $first, self::$tab_index++, $disabled_text, $id, $id, $id, $last, self::$tab_index++, $disabled_text, $id, $id, $id, $suffix, self::$tab_index++, $disabled_text, $id);

                     case &#38;quot;simple&#38;quot; :
                         return sprintf(&#38;quot;&#38;lt;div&#38;gt;&#38;lt;input name=&#38;#39;input_%d&#38;#39; type=&#38;#39;text&#38;#39; value=&#38;#39;%s&#38;#39; class=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;, $id, self::escape_attribute($value), self::escape_attribute($size), self::$tab_index++, $disabled_text);

                     default :
-                        return sprintf(&#38;quot;&#38;lt;div class=&#38;#39;ginput_complex&#38;#39;&#38;gt;&#38;lt;span class=&#38;#39;ginput_left&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.3&#38;#39; id=&#38;#39;input_%d.3&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.3&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;First&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;ginput_right&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.6&#38;#39; id=&#38;#39;input_%d.6&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.6&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Last&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;, $id, $id, $first, self::$tab_index++, $disabled_text, $id, $id, $id, $last, self::$tab_index++, $disabled_text, $id);
+                        return sprintf(&#38;quot;&#38;lt;div class=&#38;#39;ginput_complex&#38;#39;&#38;gt;&#38;lt;span class=&#38;#39;ginput_left&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.3&#38;#39; type=&#38;#39;text&#38;#39; id=&#38;#39;input_%d.3&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.3&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;First&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;#39;ginput_right&#38;#39;&#38;gt;&#38;lt;input name=&#38;#39;input_%d.6&#38;#39; type=&#38;#39;text&#38;#39; id=&#38;#39;input_%d.6&#38;#39; value=&#38;#39;%s&#38;#39; tabindex=&#38;#39;%d&#38;#39; %s/&#38;gt;&#38;lt;label for=&#38;#39;input_%d.6&#38;#39;&#38;gt;&#38;quot; . __(&#38;quot;Last&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;quot;&#38;lt;/label&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;, $id, $id, $first, self::$tab_index++, $disabled_text, $id, $id, $id, $last, self::$tab_index++, $disabled_text, $id);
                 }

             case &#38;quot;address&#38;quot; :&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Aaron Campbell on "Make site and E-Mail links on Entries page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/make-site-and-e-mail-links-on-entries-page#post-60</link>
			<pubDate>Wed, 26 Aug 2009 17:25:55 +0000</pubDate>
			<dc:creator>Aaron Campbell</dc:creator>
			<guid isPermaLink="false">60@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I see that E-Mail address and website are displayed on the entries page if they were part of the form.  I'd like to see those made into links.&#60;/p&#62;
&#60;p&#62;Also, I'm not sure if you guys want patches submitted for this kind of stuff or if we should just tell you about it (including my other post for &#60;a href=&#34;http://forum.gravityhelp.com/topic/missing-typetext-from-normal-and-extended-name-fields-1&#34;&#62;input type&#60;/a&#62;).  Since I've modified my version, I could definitely create a patch (or rather a diff, unless you have a read version of your SVN repository accessible) or send you a patched file.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
