<?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 Tag: gform_pre_submission - Recent Posts</title>
		<link>https://legacy.forums.gravityhelp.com/tags/gform_pre_submission</link>
		<description>Gravity Support Forums Tag: gform_pre_submission - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 18:30:38 +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/tags/gform_pre_submission" rel="self" type="application/rss+xml" />

		<item>
			<title>glasgoweb on "gform_pre_submission hook not saving data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_pre_submission-hook-not-saving-data#post-347840</link>
			<pubDate>Thu, 27 Jun 2013 09:00:11 +0000</pubDate>
			<dc:creator>glasgoweb</dc:creator>
			<guid isPermaLink="false">347840@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ahh ok cheers David - got it working!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "gform_pre_submission hook not saving data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_pre_submission-hook-not-saving-data#post-345924</link>
			<pubDate>Wed, 26 Jun 2013 11:12:02 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">345924@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It won't save because that field is set-up for a specific data type. If you tried to save your new date value in a hidden text field, it would work because that field would accept any values.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>glasgoweb on "gform_pre_submission hook not saving data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_pre_submission-hook-not-saving-data#post-345689</link>
			<pubDate>Wed, 26 Jun 2013 07:54:52 +0000</pubDate>
			<dc:creator>glasgoweb</dc:creator>
			<guid isPermaLink="false">345689@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;HI there,&#60;/p&#62;
&#60;p&#62;I'm trying to use the gform_pre_submission hook to convert a date field into a different format.&#60;/p&#62;
&#60;p&#62;I'm using the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_pre_submission&#38;quot;, &#38;quot;pre_submission_handler&#38;quot;, 10, 2);

function pre_submission_handler($form){
    date_default_timezone_set(&#38;#39;UTC&#38;#39;);
    $date = $_POST[&#38;quot;input_4&#38;quot;];
    $date = date(&#38;#39;l jS M&#38;#39;, strtotime($date));
    $_POST[&#38;quot;input_4&#38;quot;] = $date;
    die(var_dump($_POST));
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;When I perform a vardump of the $_POST variable it gives the right info:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[&#38;quot;input_4&#38;quot;]=&#38;gt; string(17) &#38;quot;Saturday 29th Jun&#38;quot;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;but it doesn't seem to save it. In the entries page the Date column is left blank. &#60;/p&#62;
&#60;p&#62;Any thoughts?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Is there a way to link Russian payment gateway to gf?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-there-a-way-to-link-russian-payment-gateway-to-gf#post-327887</link>
			<pubDate>Mon, 17 Jun 2013 00:40:59 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">327887@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We don't have any integration with that payment gateway.  I'm not sure if it is supported by Woocommerce or not.  &#60;/p&#62;
&#60;p&#62;We don't have any specific information regarding Woocommerce.  It sounds like you can accomplish everything described here, except the payment gateway, with Gravity Forms.&#60;/p&#62;
&#60;p&#62;You can use the gform_after_submission hook gform_pre_submission filter to send data to 3rd party services:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_submission&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_submission&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>millermedia on "All &#34;CAPS&#34; to complete the form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/all-caps-to-complete-the-form#post-318562</link>
			<pubDate>Wed, 12 Jun 2013 09:02:44 +0000</pubDate>
			<dc:creator>millermedia</dc:creator>
			<guid isPermaLink="false">318562@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you, that worked!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "All &#34;CAPS&#34; to complete the form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/all-caps-to-complete-the-form#post-317468</link>
			<pubDate>Tue, 11 Jun 2013 16:14:20 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">317468@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try input_14_3 and input_14_6.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>millermedia on "All &#34;CAPS&#34; to complete the form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/all-caps-to-complete-the-form#post-317442</link>
			<pubDate>Tue, 11 Jun 2013 15:42:11 +0000</pubDate>
			<dc:creator>millermedia</dc:creator>
			<guid isPermaLink="false">317442@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If input_14 is the name field in normal format or the address field, this function doesn't transform the individual fields. I tried input_14.3 and input_14.6 with no luck.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sagatovumid on "Is there a way to link Russian payment gateway to gf?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-there-a-way-to-link-russian-payment-gateway-to-gf#post-301920</link>
			<pubDate>Tue, 04 Jun 2013 17:00:49 +0000</pubDate>
			<dc:creator>sagatovumid</dc:creator>
			<guid isPermaLink="false">301920@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello everyone,&#60;br /&#62;
I am deciding whether i shall choose gf or woocommerce. On my web-site I am willing to sell access to my online course. I need a very simple form, with a BUY NOW button linked to Russian payment gateway &#60;a href=&#34;http://robokassa.ru/&#34; rel=&#34;nofollow&#34;&#62;http://robokassa.ru/&#60;/a&#62;.&#60;br /&#62;
There will be 5-6 generic fields, and 1 success page for every buyer.&#60;br /&#62;
So, please tell me whether I can do it.&#60;/p&#62;
&#60;p&#62;P.S. Robokassa provides a demo of their PHP script. &#60;a href=&#34;http://robokassa.ru/ru/Doc/demo_php.zip&#34; rel=&#34;nofollow&#34;&#62;http://robokassa.ru/ru/Doc/demo_php.zip&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Getting selected values of checkboxes in gform_pre_submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/getting-selected-values-of-checkboxes-in-gform_pre_submission#post-293173</link>
			<pubDate>Fri, 31 May 2013 16:48:48 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">293173@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In the pre submission filter, the entry isn't created yet, so you can get a hold of the submitted values by inspecting the $_POST variables. Each checkbox item will have its own variable. For example, lets say I have a checkbox field whose Field Id is 1 and it has 3 choices, then I would access the value for each like the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$value_of_first_checkbox = $_POST[&#38;quot;input_2_1&#38;quot;];
$value_of_second_checkbox = $_POST[&#38;quot;input_2_2&#38;quot;];
$value_of_third_checkbox = $_POST[&#38;quot;input_2_3&#38;quot;];&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I hope this helps.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hey.com.uy on "Getting selected values of checkboxes in gform_pre_submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/getting-selected-values-of-checkboxes-in-gform_pre_submission#post-289547</link>
			<pubDate>Thu, 30 May 2013 10:42:26 +0000</pubDate>
			<dc:creator>hey.com.uy</dc:creator>
			<guid isPermaLink="false">289547@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Same looking over here!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
