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

		<item>
			<title>MarketplaceHomes on "Slow form submission - 26k+ draft posts - function improvement request"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/slow-form-submission-26k-draft-posts-function-improvement-request#post-369370</link>
			<pubDate>Mon, 08 Jul 2013 21:37:21 +0000</pubDate>
			<dc:creator>MarketplaceHomes</dc:creator>
			<guid isPermaLink="false">369370@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;We are running quite a few Gravity Forms forms and form submissions have slowed down significantly over time.&#60;/p&#62;
&#60;p&#62;I wrote a timer utility to check and see which part of the process was taking so much extra time and was a bit surprised to see that the actual entry creation was taking 26+ seconds per form submission.&#60;/p&#62;
&#60;p&#62;After a bit of digging, I narrowed the culprit down ( gravity forms 1.7.6 ) to the forms_model.php file, get_default_post_title function.&#60;/p&#62;
&#60;p&#62;Currently it looks like the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;private static function get_default_post_title(){
        global $wpdb;
        $title = &#38;quot;Untitled&#38;quot;;
        $count = 1;

        $titles = $wpdb-&#38;gt;get_col(&#38;quot;SELECT post_title FROM $wpdb-&#38;gt;posts WHERE post_title like &#38;#39;%Untitled%&#38;#39;&#38;quot;);
        $titles = array_values($titles);
        while(in_array($title, $titles)){
            $title = &#38;quot;Untitled_$count&#38;quot;;
            $count++;
        }
        return $title;
    }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;With 25000 records that match, a procedural language approach ( like C, C++, php, etc. ) will take a good long while to run through the loop and find an untaken value.&#60;/p&#62;
&#60;p&#62;It would be much better to use a set language approach ( sql ) which might look like the following:&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Grab the ID ( or title ) of the most recently added post&#60;/li&#62;
&#60;li&#62;Add one to the ID ( or parse the title, grab the integer, and increment it )&#60;/li&#62;
&#60;li&#62;Set the title to Untitled_N where N is the result of the integer found + 1&#60;/li&#62;
&#60;li&#62;If needed, use a small loop to check for existence of a post having that title, and increment the integer until an unused title is found&#60;/li&#62;
&#60;li&#62;return the resulting title&#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;Doing things this way would save a ton of processing power and time, and the fix would be rather simple.&#60;/p&#62;
&#60;p&#62;Obviously, it would be even better to use a custom post type for these things as that would avoid cluttering the post list with tons of drafts, allow full control over title generation ( e.g. with your own custom post type you could be certain the next unused id was available for use as a title ), etc. But that would also take a lot more work, especially to maintain backward compatibility.&#60;/p&#62;
&#60;p&#62;Anywise, if you could take a look at that function and revise it so that it doesn't bog larger systems down, it would be much appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dominiclane on "Generate custom post type for a form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/generate-custom-post-type-for-a-form#post-370199</link>
			<pubDate>Tue, 09 Jul 2013 04:52:48 +0000</pubDate>
			<dc:creator>dominiclane</dc:creator>
			<guid isPermaLink="false">370199@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;A button you simply click as an option when creating each form or once it's been created to automatically generate a custom post type with all the relevant fields that the form has. Displaying it is possibly a different matter but this would still be a very useful and time saving feature for any form geek
&#60;/p&#62;</description>
		</item>
		<item>
			<title>soupdigital on "Date Picker Not Showing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/date-picker-not-showing#post-360794</link>
			<pubDate>Wed, 03 Jul 2013 22:01:58 +0000</pubDate>
			<dc:creator>soupdigital</dc:creator>
			<guid isPermaLink="false">360794@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;The date picker is not showing on this form here (on this site I have updated to the latest GF: 1.7.6): &#60;a href=&#34;http://www.prepit.co.nz/quick-quote/&#34; rel=&#34;nofollow&#34;&#62;http://www.prepit.co.nz/quick-quote/&#60;/a&#62;&#60;br /&#62;
On my other site with a similar form it's working fine on the GF version: 1.6.12.&#60;/p&#62;
&#60;p&#62;Both sites have the latest download of Wordpress as well. &#60;/p&#62;
&#60;p&#62;I have searched the forum for similar issues but nothing really worked specific to this case from what I can see.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Bajakits on "Cant Create New Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-create-new-form-5#post-342567</link>
			<pubDate>Mon, 24 Jun 2013 17:38:59 +0000</pubDate>
			<dc:creator>Bajakits</dc:creator>
			<guid isPermaLink="false">342567@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi guys ... Using this on other sites in the past but on this new site Im working on I uploaded the plugin , activated it, put in my lic and when I go to create my first form I get this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.bajakits.com/dev/ScreenShot.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.bajakits.com/dev/ScreenShot.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Tried it on both Firefox and Chrome with no luck .... cant add the form as I can see all the fields.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dustin on "Action A PHP Script upon form submission using an external php script"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/action-a-php-script-upon-form-submission-using-an-external-php-script#post-347996</link>
			<pubDate>Thu, 27 Jun 2013 10:47:30 +0000</pubDate>
			<dc:creator>dustin</dc:creator>
			<guid isPermaLink="false">347996@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi I wonder if anyone can help me?&#60;br /&#62;
I've got a call to action gravity form setup on my website where customers can enter their UK postcode and click submit. The user is then re-directed to another gravity form where they can complete their request. I've setup dynamic population so the input entered into form 1 gets populated in the second form.&#60;/p&#62;
&#60;p&#62;For Form 1 - when a user enters data &#38;amp; clicks submit (Before user is directed to form 2)&#60;br /&#62;
Upon submit I would like to action an external php script which would validate the user entry.&#60;/p&#62;
&#60;p&#62;I've tried various filters and actions But I just can't figure out how to action the PHP script.&#60;/p&#62;
&#60;p&#62;Link to form1 &#60;a href=&#34;http://my-insulation.info/&#34; rel=&#34;nofollow&#34;&#62;http://my-insulation.info/&#60;/a&#62; is the main page &#60;/p&#62;
&#60;p&#62;When I input data and click submit I get the following error -There was a problem with your submission. Errors have been highlighted below.&#60;/p&#62;
&#60;p&#62;I'm not a web developer &#38;amp; can't afford to hire one, If someone can offer any assistance I would greatly appreciate it -&#60;/p&#62;
&#60;p&#62;This is what I've done or got -&#60;/p&#62;
&#60;p&#62;//Code is placed in the themes function.php file&#60;br /&#62;
My PHP code can be seen here - &#60;a href=&#34;http://pastebin.com/S9S7dH09&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/S9S7dH09&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>smartfinds on "Adding A Form To Sidebar Widget"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/adding-a-form-to-sidebar-widget#post-320700</link>
			<pubDate>Thu, 13 Jun 2013 11:00:06 +0000</pubDate>
			<dc:creator>smartfinds</dc:creator>
			<guid isPermaLink="false">320700@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I searched the forum, but could not specifically find an answer to this question.  One link about &#34;embedding a form&#34; actually lead to a page with no content.&#60;/p&#62;
&#60;p&#62;Can you explain how we would add a Gravity Form to a sidebar using the &#34;Widget&#34; area in Wordpress?&#60;/p&#62;
&#60;p&#62;Of course we understand how to setup a form, but not quite clear how we can drop that into the sidebar via the widgets menu in Wordpress admin.&#60;/p&#62;
&#60;p&#62;Thanks for your feedback.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TakeCareGastouderservices on "Conditional logic, form is not showing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-form-is-not-showing#post-314560</link>
			<pubDate>Mon, 10 Jun 2013 05:49:39 +0000</pubDate>
			<dc:creator>TakeCareGastouderservices</dc:creator>
			<guid isPermaLink="false">314560@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I've installed Gravity forms but the form is not showing when i used conditonal logics.&#60;br /&#62;
&#60;a href=&#34;http://94.103.150.222/~devtakecar/contact-opnemen/&#34; rel=&#34;nofollow&#34;&#62;http://94.103.150.222/~devtakecar/contact-opnemen/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;wp_footer is called in footer.php so that shouldnt be the problem.&#60;/p&#62;
&#60;p&#62;hope anyone can help me.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PointandStare on "remove form on confirmation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-form-on-confirmation#post-340267</link>
			<pubDate>Sun, 23 Jun 2013 10:42:54 +0000</pubDate>
			<dc:creator>PointandStare</dc:creator>
			<guid isPermaLink="false">340267@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm 99.9% sure we used to be able to do this but I cannot seem to find it now.&#60;/p&#62;
&#60;p&#62;Form gets submitted, is removed and confirmation message is displayed in its place.&#60;br /&#62;
(rather than message appearing atop the form)&#60;br /&#62;
Am I being a donut or is/ was this not possible?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jason on "Hide &#039;parts&#039; of a forms email submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/hide-parts-of-a-forms-email-submission#post-196025</link>
			<pubDate>Wed, 03 Apr 2013 22:33:08 +0000</pubDate>
			<dc:creator>Jason</dc:creator>
			<guid isPermaLink="false">196025@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there,&#60;br /&#62;
I have a complex form, which to be totally honest I'd like to keep using the {all_fields} option on for notifications.&#60;br /&#62;
But (&#38;amp; I know you are going to say add each individual form entry/merge tag etc, etc...) I'd like to hide certain form fields from being sent/displayed in the email notification - without having to do that.&#60;br /&#62;
Is there any other way I can somehow group certain fields (credit card details in this case) &#38;amp; have a display:none !important (ok, perhaps not exactly like that) but somehow keep those form fields from being sent/displayed whilst retaining the {all_fields} option?&#60;br /&#62;
You see it seems that if I do that (keep the {all_fields} option) then the fields that aren't filled in by the user aren't displayed in the email (the desired result), but if I start manually adding each individual form field/merge tag to the email notification - then all fields are displayed regardless of whether or not the user has filled in those form fields - making the email notification somewhat harrowing to trawl through for the client.&#60;br /&#62;
See my dilema?&#60;br /&#62;
Granted - I am probably missing something here, hence my question.&#60;br /&#62;
Thanks for listening  :)&#60;br /&#62;
Jas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jeremy.s on "What&#039;s up with add form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/whats-up-with-add-form#post-320166</link>
			<pubDate>Thu, 13 Jun 2013 04:49:12 +0000</pubDate>
			<dc:creator>jeremy.s</dc:creator>
			<guid isPermaLink="false">320166@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I cannot create any more forms...?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://snag.gy/tvtyC.jpg&#34; rel=&#34;nofollow&#34;&#62;http://snag.gy/tvtyC.jpg&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
