<?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: How to hyperlink field value</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-to-hyperlink-field-value</link>
		<description>Gravity Support Forums Topic: How to hyperlink field value</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 06:33:17 +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/how-to-hyperlink-field-value" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "How to hyperlink field value"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-hyperlink-field-value#post-42636</link>
			<pubDate>Wed, 30 Nov 2011 19:42:47 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42636@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Because you only want them to enter the ticket number, but want to manipulate it and display it as a link, the only way to do this is going to be by storing it as a link.  This includes using a Website field type because that field type automatically hyperlinks URL's when displaying them in the entry detail and {all_fields} merge tag output in notifications.&#60;/p&#62;
&#60;p&#62;You can still capture the data using a Single Input field or a Number field, depending on how you are doing it now.  But you'd then have to implement a customization to take this value and populate a Website field with it, adding the &#60;a href=&#34;http://helpdesk.com/ticketID=&#34; rel=&#34;nofollow&#34;&#62;http://helpdesk.com/ticketID=&#60;/a&#62; in front of it to create the full URL.&#60;/p&#62;
&#60;p&#62;You would do this by...&#60;/p&#62;
&#60;p&#62;- Edit your form&#60;br /&#62;
- Add a Website field to your form&#60;br /&#62;
- Edit the Website Field and give it a field label of &#34;Ticket Link&#34; or whatever you want to call it&#60;br /&#62;
- Select the Advanced tab&#60;br /&#62;
- Set the field so that it's visibility is Admin Only&#60;br /&#62;
- Save your form&#60;/p&#62;
&#60;p&#62;Now the hard part.  You need to write custom code so that when the form is submitted, the value of the ticket input field is concatenated with the http:// URL you want to form the link and stored as the value of the Website field you created above.&#60;/p&#62;
&#60;p&#62;To do this you would use the gform_pre_submission hook which is documented here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You would write custom code that uses this hook.  You would place this custom code in your themes functions.php file OR create your own custom plugin and activate it (ideal but more advanced).&#60;/p&#62;
&#60;p&#62;Your hook would need to get the value of the ticket number field, then concatenate it with the static link URL you need to place in front of it to form the correct link and then store it as the value for the Ticket Link field.&#60;/p&#62;
&#60;p&#62;Here is a forum post that discusses how to combine the value of fields and store that combined value as the value of another field:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/combining-fields#post-5397&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/combining-fields#post-5397&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That example is very similar to what you want to do.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sYpram on "How to hyperlink field value"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-hyperlink-field-value#post-42622</link>
			<pubDate>Wed, 30 Nov 2011 18:57:25 +0000</pubDate>
			<dc:creator>sYpram</dc:creator>
			<guid isPermaLink="false">42622@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello Carl,&#60;/p&#62;
&#60;p&#62;I want to link it in the entry form. So when the ticket number is inserted the agent can just click and it open a new browser page redirect the agent to ticket on the helpdesk.&#60;/p&#62;
&#60;p&#62;And i like you suggestion to reference it on the confirmation email... this would be a good idea if we can implement.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://maxupload.net/images/86489346242536770276.jpg&#34; rel=&#34;nofollow&#34;&#62;http://maxupload.net/images/86489346242536770276.jpg&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "How to hyperlink field value"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-hyperlink-field-value#post-42616</link>
			<pubDate>Wed, 30 Nov 2011 18:46:56 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42616@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;So what you want to do is have a field where a user enters a ticket number.  Then you want to present this ticket number as a link?&#60;/p&#62;
&#60;p&#62;Where do you want to do this? &#60;/p&#62;
&#60;p&#62;- Do you want this to happen in the entry details?&#60;br /&#62;
- Do you want this to happen in the confirmation page and the email notifications?&#60;br /&#62;
- Both? Or are you flexible, if so which one is most important?&#60;/p&#62;
&#60;p&#62;This will determine what you need to do to implement this.  Let me know and we can provide some guidance on how to accomplish this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sYpram on "How to hyperlink field value"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-hyperlink-field-value#post-42586</link>
			<pubDate>Wed, 30 Nov 2011 15:39:22 +0000</pubDate>
			<dc:creator>sYpram</dc:creator>
			<guid isPermaLink="false">42586@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I want some help and instructions on setting up a form. We built a form where we would type in a ticket number. I wanted to check if it was possible to hyperlink the ticket number to embedded link (example: &#60;a href=&#34;http://helpdesk.com/ticketID=####)&#34; rel=&#34;nofollow&#34;&#62;http://helpdesk.com/ticketID=####)&#60;/a&#62;. The #### is where the ticket number would be placed and then direct to that link.&#60;/p&#62;
&#60;p&#62;Please advise.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
