<?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: i didn&#039;t get good value when i received notification</title>
		<link>https://legacy.forums.gravityhelp.com/topic/i-didnt-get-good-value-when-i-received-notification</link>
		<description>Gravity Support Forums Topic: i didn&#039;t get good value when i received notification</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 22:10:02 +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/i-didnt-get-good-value-when-i-received-notification" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "i didn&#039;t get good value when i received notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/i-didnt-get-good-value-when-i-received-notification#post-124361</link>
			<pubDate>Thu, 17 Jan 2013 09:22:01 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">124361@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for the update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creativexperience on "i didn&#039;t get good value when i received notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/i-didnt-get-good-value-when-i-received-notification#post-124359</link>
			<pubDate>Thu, 17 Jan 2013 09:21:09 +0000</pubDate>
			<dc:creator>creativexperience</dc:creator>
			<guid isPermaLink="false">124359@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Great, Thanks very much ! Now all is good :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "i didn&#039;t get good value when i received notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/i-didnt-get-good-value-when-i-received-notification#post-124279</link>
			<pubDate>Thu, 17 Jan 2013 07:36:38 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">124279@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You need to specify the form ID.  There are a couple ways to do it.  &#60;/p&#62;
&#60;p&#62;1) You can create three functions (they need unique names):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// this will apply to form ID 1
add_action(&#38;#39;gform_pre_submission_filter_1&#38;#39;, &#38;#39;pre_submission_one&#38;#39;);
	// this is the ID of the hidden field for form 1
	function pre_submission_one($form){
	$_POST[&#38;#39;input_25&#38;#39;] = date(&#38;#39;G:H:s&#38;#39;);
	return $form;
}

// this will apply to form ID 2
add_action(&#38;#39;gform_pre_submission_filter_2&#38;#39;, &#38;#39;pre_submission_two&#38;#39;);
	function pre_submission_two($form){
	// this is the ID of the hidden field for form 2
	$_POST[&#38;#39;input_24&#38;#39;] = date(&#38;#39;G:H:s&#38;#39;);
	return $form;
}

// this will apply to form ID 3
add_action(&#38;#39;gform_pre_submission_filter_3&#38;#39;, &#38;#39;pre_submission_three&#38;#39;);
	function pre_submission_three($form){
	// this is the ID of the hidden field for form 3
	$_POST[&#38;#39;input_16&#38;#39;] = date(&#38;#39;G:H:s&#38;#39;);
	return $form;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just change the form ID in the first line of the function and match the field ID to correspond with the form ID.&#60;/p&#62;
&#60;p&#62;You could also do it with one function, then test the form ID and based on the form ID populate a specific field ID.  If the previous approach does not work, I will post this other method for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creativexperience on "i didn&#039;t get good value when i received notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/i-didnt-get-good-value-when-i-received-notification#post-124119</link>
			<pubDate>Thu, 17 Jan 2013 03:16:08 +0000</pubDate>
			<dc:creator>creativexperience</dc:creator>
			<guid isPermaLink="false">124119@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No,&#60;br /&#62;
input_25 is for the first form&#60;br /&#62;
input_24 is for the second form&#60;br /&#62;
input_16 is for the third form&#60;/p&#62;
&#60;p&#62;that's why i don't get good value when i receive notifications&#60;br /&#62;
i think i mut give value for $form ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "i didn&#039;t get good value when i received notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/i-didnt-get-good-value-when-i-received-notification#post-123534</link>
			<pubDate>Wed, 16 Jan 2013 12:51:39 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">123534@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What are input_25, input_24 and input_16?  Are those all hidden fields in one form?&#60;/p&#62;
&#60;p&#62;The &#60;strong&#62;25&#60;/strong&#62; (or any of those input numbers) should be the ID of the hidden field where you want to store the date.  Can you tell us what field ID you want to store the date in?&#60;/p&#62;
&#60;p&#62;Sounds like you have 3 forms as well.  You might have to create three functions, each one tied to a different form.  But we need to get one working properly before expanding that into 3 forms and 3 different field IDs.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creativexperience on "i didn&#039;t get good value when i received notification"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/i-didnt-get-good-value-when-i-received-notification#post-123415</link>
			<pubDate>Wed, 16 Jan 2013 09:44:20 +0000</pubDate>
			<dc:creator>creativexperience</dc:creator>
			<guid isPermaLink="false">123415@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I use imput hidden field. i follow your instructions but i get an error, i have 3 forms i use&#60;br /&#62;
i didn't get good value when i received notification&#60;/p&#62;
&#60;p&#62;i add in my function.php, this code ( i follow instruction from &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/how-to-put-in-notification-title-the-date-hours&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/how-to-put-in-notification-title-the-date-hours&#60;/a&#62; )&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
    add_action(&#34;gform_pre_submission&#34;, &#34;pre_submission_handler&#34;);&#60;br /&#62;
    function pre_submission_handler($form){&#60;br /&#62;
    $_POST[&#34;input_25&#34;] = date('G:H:s');&#60;br /&#62;
    $_POST[&#34;input_24&#34;] = date('G:H:s');&#60;br /&#62;
    $_POST[&#34;input_16&#34;] = date('G:H:s');&#60;br /&#62;
    }
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;How i can specify which input i must use for each form (Form contact / Form Request / Form offer) ?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
