<?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: Post Title (concatenate files)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/post-title-concatenate-files</link>
		<description>Gravity Support Forums Topic: Post Title (concatenate files)</description>
		<language>en-US</language>
		<pubDate>Tue, 07 Apr 2026 08:45:34 +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/post-title-concatenate-files" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Post Title (concatenate files)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-concatenate-files#post-30876</link>
			<pubDate>Mon, 25 Jul 2011 11:32:51 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">30876@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Please post back when you have it resolved or if you need additional help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cipek1981 on "Post Title (concatenate files)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-concatenate-files#post-30875</link>
			<pubDate>Mon, 25 Jul 2011 11:28:44 +0000</pubDate>
			<dc:creator>cipek1981</dc:creator>
			<guid isPermaLink="false">30875@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Tnx. &#60;/p&#62;
&#60;p&#62;Some things are so simple :) I went to the wrong direction. I saw the field Default Value, and I try with this...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Post Title (concatenate files)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-concatenate-files#post-30872</link>
			<pubDate>Mon, 25 Jul 2011 11:14:24 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">30872@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I created a quick form here:&#60;br /&#62;
&#60;a href=&#34;http://gravity.chrishajer.com/title-test/&#34; rel=&#34;nofollow&#34;&#62;http://gravity.chrishajer.com/title-test/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I added two fields, &#60;strong&#62;First half of the title&#60;/strong&#62; and &#60;strong&#62;Second half of the title&#60;/strong&#62;.  These are NOT Post type fields, just normal single line text inputs.&#60;/p&#62;
&#60;p&#62;Then I added a Post Title field, and marked it admin only.  That will prevent it from showing up on the front end where people would be required to enter a value.  Be sure that you DO NOT mark this as required, as the form validation will fail (the user can't see it because it's admin only, but you marked it required, which they cannot abide by.)&#60;/p&#62;
&#60;p&#62;For that field, check &#34;Create content template&#34;.  That will enable you to concatenate two single lines of text into one line, the title.  After you click that check box, you will be presented with a drop down that says &#34;insert form field&#34; by default, and in the drop down are the other fields on the form, plus some other information which is captured by Gravity Forms.&#60;/p&#62;
&#60;p&#62;Here's what my Content template for the Title looks like:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;{First half of the title:1} &#124;&#124; {Second half of the title:2}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That takes my first field, adds the &#34; &#124;&#124; &#34; in the middle, then adds the second field and uses that as the post title.  You can see an example submission here:&#60;br /&#62;
&#60;a href=&#34;http://gravity.chrishajer.com/2011/07/25/dogs-are-cool-except-when-theyre-not/&#34; rel=&#34;nofollow&#34;&#62;http://gravity.chrishajer.com/2011/07/25/dogs-are-cool-except-when-theyre-not/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You might want to limit the number of characters in your two single line text inputs as the two lines when added together might get very long.&#60;/p&#62;
&#60;p&#62;If you need more help, please let me know. Feel free to submit the form if you want to see how it works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cipek1981 on "Post Title (concatenate files)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/post-title-concatenate-files#post-30861</link>
			<pubDate>Mon, 25 Jul 2011 06:29:46 +0000</pubDate>
			<dc:creator>cipek1981</dc:creator>
			<guid isPermaLink="false">30861@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have two fields (single line text) on form, and two image fields. On post this form, in table wp_post, column POST_TITLE have value (Untitled_X) - X is number.&#60;/p&#62;
&#60;p&#62;After I put Post field (Title) i got in table wp_post, column POST_TITLE value from Title fields. But, I want to on submit concatenate two single line text fields in one. (Post title = single_line_text_1 &#124;&#124; single_line_text_2). &#60;/p&#62;
&#60;p&#62;I try on advanced tab of (Post field) in Default value (insert variable) add somthing like this:&#60;br /&#62;
$_POST['name_of_single_line_text1']&#60;br /&#62;
$_POST['name_of_single_line_text2']&#60;br /&#62;
{user:input_1}&#60;br /&#62;
{user:input_2}....&#60;/p&#62;
&#60;p&#62;but nothing . Is it possible in this way? If not, what to do?&#60;/p&#62;
&#60;p&#62; Sorry on my english
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
