<?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: Seperating the title from the form name</title>
		<link>https://legacy.forums.gravityhelp.com/topic/seperating-the-title-from-the-form-name</link>
		<description>Gravity Support Forums Topic: Seperating the title from the form name</description>
		<language>en-US</language>
		<pubDate>Tue, 07 Apr 2026 11:53: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/topic/seperating-the-title-from-the-form-name" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Seperating the title from the form name"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/seperating-the-title-from-the-form-name#post-96751</link>
			<pubDate>Wed, 28 Nov 2012 23:11:24 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">96751@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can choose not to display the form title when you embed the form.  Uncheck the box which says &#34;Display form  title&#34;.  Screenshot: &#60;a href=&#34;http://minus.com/lbh1LtfAtRwdYS&#34; rel=&#34;nofollow&#34;&#62;http://minus.com/lbh1LtfAtRwdYS&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Did I misunderstand your issue completely or will this approach work for you?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Seperating the title from the form name"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/seperating-the-title-from-the-form-name#post-96750</link>
			<pubDate>Wed, 28 Nov 2012 23:11:24 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">96750@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can choose not to display the form title when you embed the form.  Uncheck the box which says &#34;Display form  title&#34;.  Screenshot: &#60;a href=&#34;http://minus.com/lbh1LtfAtRwdYS&#34; rel=&#34;nofollow&#34;&#62;http://minus.com/lbh1LtfAtRwdYS&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Did I miss your issue completely or will this approach work for you?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jive Software on "Seperating the title from the form name"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/seperating-the-title-from-the-form-name#post-96610</link>
			<pubDate>Wed, 28 Nov 2012 13:57:47 +0000</pubDate>
			<dc:creator>Jive Software</dc:creator>
			<guid isPermaLink="false">96610@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Note in the above code the forum security code is editing my code for security reasons...  so in the function editor_script() function you need to add php close and open tags before and after the stript tags
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jive Software on "Seperating the title from the form name"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/seperating-the-title-from-the-form-name#post-96606</link>
			<pubDate>Wed, 28 Nov 2012 13:52:25 +0000</pubDate>
			<dc:creator>Jive Software</dc:creator>
			<guid isPermaLink="false">96606@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you want the writter to be able to contribute the form title you can create a custom field on the g form via:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_properties_settings&#38;quot;, &#38;quot;form_properties&#38;quot;, 10, 2);

function form_properties($position, $form_id) {
if($position == 100) {	?&#38;gt;
  &#38;lt;li class=&#38;quot;field_form_title_li field_setting&#38;quot;&#38;gt;
    &#38;lt;label for=&#38;quot;field_form_title&#38;quot;&#38;gt;
        &#38;lt;?php _e(&#38;quot;Form Title&#38;quot;, &#38;quot;gravityforms&#38;quot;); ?&#38;gt;
    &#38;lt;/label&#38;gt;
    &#38;lt;input type=&#38;quot;text&#38;quot; id=&#38;quot;field_form_title&#38;quot; class=&#38;quot;fieldwidth-3&#38;quot; onkeyup=&#38;quot;SetFormProperty(&#38;#39;formTitle&#38;#39;, this.value);&#38;quot; size=&#38;quot;35&#38;quot;/&#38;gt;

&#38;lt;?php
}
}

add_action(&#38;quot;gform_editor_js&#38;quot;, &#38;quot;editor_script&#38;quot;);

function editor_script(){

&#38;lt;script&#38;gt;
function SetFormProperty(name, value) {
form[name] = value;
}

jQuery(document).bind(&#38;quot;gform_load_form_settings&#38;quot;, function(event, field) {

if(jQuery(&#38;quot;label[for=&#38;#39;form_title_input&#38;#39;]&#38;quot;)) {
jQuery(&#38;quot;label[for=&#38;#39;form_title_input&#38;#39;]&#38;quot;).html(&#38;#39;Form Name&#38;#39;)
}

if(typeof form.formTitle !== &#38;quot;undefined&#38;quot;) {
if(form.formTitle != &#38;quot;&#38;quot;) {
jQuery(&#38;quot;#field_form_title&#38;quot;).val(form.formTitle);
}
}

});

&#38;lt;/script&#38;gt;

}

add_filter(&#38;quot;gform_pre_render&#38;quot;, &#38;quot;pre_render_function&#38;quot;);

function pre_render_function( $form ) {

if(isset($form[&#38;#39;title&#38;#39;])) {
$form[&#38;#39;title&#38;#39;] = $form[&#38;#39;formTitle&#38;#39;];
} else {
$form[&#38;#39;title&#38;#39;] = &#38;#39;&#38;#39;;
}	

}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Jive Software on "Seperating the title from the form name"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/seperating-the-title-from-the-form-name#post-96595</link>
			<pubDate>Wed, 28 Nov 2012 13:06:38 +0000</pubDate>
			<dc:creator>Jive Software</dc:creator>
			<guid isPermaLink="false">96595@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It seems like you can do it via the pre render&#60;br /&#62;
In your prerender hook add this code:&#60;br /&#62;
$form['title'] = '';&#60;/p&#62;
&#60;p&#62;or &#60;/p&#62;
&#60;p&#62;$form['title'] = 'Your Title Goes Here';
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jive Software on "Seperating the title from the form name"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/seperating-the-title-from-the-form-name#post-96591</link>
			<pubDate>Wed, 28 Nov 2012 12:57:30 +0000</pubDate>
			<dc:creator>Jive Software</dc:creator>
			<guid isPermaLink="false">96591@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Has any one figured out a way to prevent the form name / title from rendering on the form? &#60;/p&#62;
&#60;p&#62;All our forms have the same headline &#34;Your Info&#34; and I am unable to meet the writers form headline requirment becuase the form title has to be unique becuase it is connected to the form name.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
