<?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: Do not want to save form entries</title>
		<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries</link>
		<description>Gravity Support Forums Topic: Do not want to save form entries</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 22:11:13 +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/do-not-want-to-save-form-entries" rel="self" type="application/rss+xml" />

		<item>
			<title>Alex Cancado on "Do not want to save form entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries#post-368137</link>
			<pubDate>Mon, 08 Jul 2013 10:30:09 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">368137@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the suggestion. That hook does make sense. I will be looking at adding that in a future version.&#60;/p&#62;
&#60;p&#62;EDIT: Actually, I need to take another look at this. There are some things such as notification and Add-Ons that do require an entry to be created, so even though that filter will &#34;work&#34; and the entry won't be saved, it could also create issues in other areas.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lkraav on "Do not want to save form entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries#post-361745</link>
			<pubDate>Thu, 04 Jul 2013 11:27:26 +0000</pubDate>
			<dc:creator>lkraav</dc:creator>
			<guid isPermaLink="false">361745@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Well, in this scenario I have a simple selection of dropdowns that the user can operate with. There is no textual input. It's just a utility filter form, I have no interest in the selections the users make. I could code this by hand, but the GUI form editor and other goodness makes me want to use GF and get it over with.&#60;/p&#62;
&#60;p&#62;Since I don't need any validation, this works for me in this scenario:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function io_form_pre_validation( $form ) {
    if ( ! isset( $form[ &#38;quot;id&#38;quot; ] ) ) return $form;
    if ( $form[ &#38;quot;id&#38;quot; ] != 5 ) return $form;

    foreach ( $form[ &#38;quot;confirmations&#38;quot; ] as $c ) {
        if ( $c[ &#38;quot;type&#38;quot; ] == &#38;quot;redirect&#38;quot; &#38;amp;&#38;amp; isset( $c[ &#38;quot;url&#38;quot; ] ) )
            wp_safe_redirect( $c[ &#38;quot;url&#38;quot; ] );
            exit;
    }
}
add_filter( &#38;quot;gform_pre_validation&#38;quot;, &#38;quot;io_form_pre_validation&#38;quot; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But if I did want the GF validation goodness in some form, yet don't need the leads saved, then I'd really like to be able to be able to add_filter-override the handle_submission -&#38;gt; save_lead chain.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Do not want to save form entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries#post-361731</link>
			<pubDate>Thu, 04 Jul 2013 10:59:31 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">361731@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you give more information so that when our developers look at this on Monday, they'll have all the information they need to respond? Walk me through your thought process more. Gravity Forms was designed by default to save leads to the database, and it is rare that someone doesn't want it to do that.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lkraav on "Do not want to save form entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries#post-361728</link>
			<pubDate>Thu, 04 Jul 2013 10:56:40 +0000</pubDate>
			<dc:creator>lkraav</dc:creator>
			<guid isPermaLink="false">361728@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Step earlier in GFFormDisplay::handle_submission probably makes more sense.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lkraav on "Do not want to save form entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries#post-361722</link>
			<pubDate>Thu, 04 Jul 2013 10:51:08 +0000</pubDate>
			<dc:creator>lkraav</dc:creator>
			<guid isPermaLink="false">361722@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Guys, that sort of hoopla to stop a form from saving entries makes no sense.&#60;/p&#62;
&#60;p&#62;In GFFormsModel::save_lead() wouldn't the following Just Work(tm)?&#60;/p&#62;
&#60;p&#62; `&#60;br /&#62;
if($lead == null &#38;amp;&#38;amp; apply_filters( &#34;gform_save_lead&#34;, $form, true ) { ... } else return;&#60;br /&#62;
`
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Do not want to save form entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries#post-68990</link>
			<pubDate>Wed, 01 Aug 2012 13:41:56 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">68990@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here is a thread about that:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/purposefully-not-save-form-in-entries-database#post-15601&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/purposefully-not-save-form-in-entries-database#post-15601&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>briannecovel on "Do not want to save form entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-save-form-entries#post-68987</link>
			<pubDate>Wed, 01 Aug 2012 13:19:50 +0000</pubDate>
			<dc:creator>briannecovel</dc:creator>
			<guid isPermaLink="false">68987@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We are using gravity forms as an anonymous way for users to submit suggestions to a CEO.  Is tehre a way to disable the form entry manager feature so that it does not save entries?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
