<?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: submission - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/tags/submission</link>
		<description>Gravity Support Forums Tag: submission - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Wed, 15 Apr 2026 22:00:14 +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/submission/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>blackburn on "User must be logged in and limit one submission per user"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-must-be-logged-in-and-limit-one-submission-per-user#post-31086</link>
			<pubDate>Wed, 27 Jul 2011 16:49:27 +0000</pubDate>
			<dc:creator>blackburn</dc:creator>
			<guid isPermaLink="false">31086@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;I'm trying to create a quiz entry type form where the user must be logged in to submit and they can only submit once.&#60;/p&#62;
&#60;p&#62;Basically I've got a number of multiple choice questions (that are marked as *required* so the user can't accidentally submit before completing them)&#60;/p&#62;
&#60;p&#62;I've also created a hidden field titled Email that automatically inserts the users email address INSERT VARIABLE: {user:user_email} if they are logged in. I've also made this a required field so technically they shouldn't be able to submit without being logged in (otherwise it would be blank). I've also checked the NO DUPLICATES box so that the user can't submit twice.&#60;/p&#62;
&#60;p&#62;I've done the same for USER LOGIN.&#60;/p&#62;
&#60;p&#62;All this sounds like it should work just fine but whether I'm logged in or logged out, I can submit as many times as I want. Checking the submissions, it is recording my email address and USER LOGIN but it isn't stopping submissions when I'm not logged in (both fields are blank) and it also isn't stopping multiple submissions from the same user.&#60;/p&#62;
&#60;p&#62;Thoughts?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rezzz on "Button Conditional Logic breaks submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/button-conditional-logic-breaks-submission#post-283340</link>
			<pubDate>Tue, 28 May 2013 10:05:07 +0000</pubDate>
			<dc:creator>rezzz</dc:creator>
			<guid isPermaLink="false">283340@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a normal/standard contact form on my website that I had &#34;grandfathered&#34; in on my re-work of the website.  It has no Button logic at all.  I created several other forms that do have button logic on them.  The standard form worked great still in the latest upgrade.  But couldn't figured out why all my new forms weren't working at all, until I compared the 2 form settings.  Found out that if I left off the Button Conditional Logic, the form worked fine.  &#60;/p&#62;
&#60;p&#62;Any reason or anything to point me in the direction to solving this issue?  Much appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stuarthenshall on "Problem with Submission - Errors not Visible."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/problem-with-submission-errors-not-visible#post-50904</link>
			<pubDate>Wed, 29 Feb 2012 05:24:35 +0000</pubDate>
			<dc:creator>stuarthenshall</dc:creator>
			<guid isPermaLink="false">50904@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am receiving the following...&#60;br /&#62;
&#34;There was a problem with your submission. Errors have been highlighted below.&#34; &#60;/p&#62;
&#60;p&#62;I can't see or identify any errors. No red codes on the form. I can force obvious errors e.g. by not putting in a number or required field. I can make those corrects although on submit I still get the same text. &#60;/p&#62;
&#60;p&#62;This is not true for the whole form which is driven off of radio buttons. Eg one of the three results in a submission. The other two provide the error above. I have deleted fields and added fields etc. To no avail. &#60;/p&#62;
&#60;p&#62;This is happening in the preview mode as well as on the website. So it is not CSS setting etc. and I have tried all of them in settings.  I have also exported the form and reimported etc. &#60;/p&#62;
&#60;p&#62;This isn't the first time I've had this sort of issue. I've cured it before by starting from scratch and creating a new form. I'm presuming it is corrupt in some way. &#60;/p&#62;
&#60;p&#62;What's the solution? I'm running Gravity Forms  1.6.3  Wordpress 3.3.1 valid license etc. &#60;/p&#62;
&#60;p&#62;Happy to send log-in details etc.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>marc972 on "Form Submission sends notification email to multiple recipients"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-submission-sends-notification-email-to-multiple-recipients#post-273518</link>
			<pubDate>Fri, 24 May 2013 12:16:44 +0000</pubDate>
			<dc:creator>marc972</dc:creator>
			<guid isPermaLink="false">273518@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to have 2 different email addresses receive a notification when a user submits a form?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jason on "Customise display of {entry_url} in email submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/customise-display-of-entry_url-in-email-submission#post-204788</link>
			<pubDate>Wed, 10 Apr 2013 23:55:53 +0000</pubDate>
			<dc:creator>Jason</dc:creator>
			<guid isPermaLink="false">204788@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there any way to wrap this around a word like you would a simple href tag, like '&#60;a href=&#34;#&#34; rel=&#34;nofollow&#34;&#62;log in to view this entry&#60;/a&#62;' rather than simply having the fully qualified URL in the email submission?&#60;br /&#62;
You know what I mean yeah?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>InternalWealth on "Wrong amount sent to PayPal"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wrong-amount-sent-to-paypal#post-160293</link>
			<pubDate>Mon, 04 Mar 2013 20:00:24 +0000</pubDate>
			<dc:creator>InternalWealth</dc:creator>
			<guid isPermaLink="false">160293@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there.  &#60;/p&#62;
&#60;p&#62;I have Gravity + PayPal addon set up on a site in order to manage workshop registration.  User can select to attend one or more days...&#60;/p&#62;
&#60;p&#62;In order to achieve this, I have set up a hidden product field at $0.10 and then added a required option field with checkbox select, so the user can select one day at (x) amount or 2 days at (x + x) amount.&#60;/p&#62;
&#60;p&#62;The total shows up perfectly at the bottom of the form.  When submit is clicked, however, the total amount is not passed to paypal.... just the product amount is.    For some reason, the option amounts are dropped and not sent to PayPal..&#60;/p&#62;
&#60;p&#62;So if a user selects Day 1 ($34.50), total shows $34.60 - submit is clicked and a payment of $.10 shows up on PayPal site.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://en.yasminyoga.com/registration/&#34; rel=&#34;nofollow&#34;&#62;http://en.yasminyoga.com/registration/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any ideas?????&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>InlightnDesign on "PayPal submission not working"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/paypal-submission-not-working#post-109370</link>
			<pubDate>Thu, 27 Dec 2012 22:27:53 +0000</pubDate>
			<dc:creator>InlightnDesign</dc:creator>
			<guid isPermaLink="false">109370@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Greetings,&#60;/p&#62;
&#60;p&#62;I am admin of &#60;a href=&#34;http://pevar.com&#34; rel=&#34;nofollow&#34;&#62;http://pevar.com&#60;/a&#62;.&#60;br /&#62;
I created a form for people to order a CD.&#60;br /&#62;
See here: &#60;a href=&#34;http://pevar.com/music/from-the-core/&#34; rel=&#34;nofollow&#34;&#62;http://pevar.com/music/from-the-core/&#60;/a&#62; (scroll down to find the form)&#60;/p&#62;
&#60;p&#62;I had it setup with a Payment Option:&#60;br /&#62;
- Check or Money Order, and&#60;br /&#62;
- Credit Card via PayPal&#60;/p&#62;
&#60;p&#62;I had conditional logic set on the Check &#38;amp; PayPal options&#60;br /&#62;
to show the related form for credit card&#60;br /&#62;
or the info for mailing in a check or money order.&#60;/p&#62;
&#60;p&#62;However, I had added the price of the product both within the&#60;br /&#62;
form for the payment option and also the product itself&#60;br /&#62;
causing a double up, making it cost double for one CD.&#60;/p&#62;
&#60;p&#62;So, I went into the form editor and updated it to resolve this issue.&#60;br /&#62;
However, it then caused the Credit Card/PayPal payment option&#60;br /&#62;
to get all frakked up... now it posts an error to the form&#60;br /&#62;
and doesn't send you to PayPal to complete purchase?&#60;/p&#62;
&#60;p&#62;I have currently disabled the PayPal option on the form, as people were having issues&#60;br /&#62;
and I don't want that to happen any more for my client.&#60;/p&#62;
&#60;p&#62;How would I go about fixing this PayPal issue? What steps do I need to take to resolve it.&#60;/p&#62;
&#60;p&#62;Any help would be appreciated.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Cornflower of Inlightn Design
&#60;/p&#62;</description>
		</item>
		<item>
			<title>meistermedia on "No Data In Entry?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/no-data-in-entry#post-141109</link>
			<pubDate>Mon, 04 Feb 2013 04:17:28 +0000</pubDate>
			<dc:creator>meistermedia</dc:creator>
			<guid isPermaLink="false">141109@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am new to using the API and seems rather confusing. I have a Java Applet that uses javascript to dynamically populate hidden fields. I got it to display but the data is not saving in GFs. I did a var_dump on $_POST and $entry in the gform_post_data hook and the data shows up in $_POST but not in entry. I am a bit confused. I assume there needs to be some way to tell the API what the form field name is or do I need to manually assign something to the Entry Object before it is saved? If I add a default text field to the form it saves correctly but my field does not.&#60;/p&#62;
&#60;p&#62;I know I am probably just missing a step or misunderstanding the API. Any help or point to a basic tutorial would be helpful. The API Documentation seems to be more of a reference than detailed documentation.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rinths on "Show ALL submission results after form has been submited"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/show-all-submission-results-after-form-has-been-submited#post-135292</link>
			<pubDate>Tue, 29 Jan 2013 12:49:10 +0000</pubDate>
			<dc:creator>rinths</dc:creator>
			<guid isPermaLink="false">135292@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I want to know how I can set up gravity forms to display ALL the enteries after the form has been submitted.&#60;br /&#62;
Basically I want the form to display ALL the submissions for that form in a existing page. The submissions are made every week so it would be added to the same page every week rather then create a new one, is there a way to do this?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
