<?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: submit - Recent Posts</title>
		<link>https://legacy.forums.gravityhelp.com/tags/submit</link>
		<description>Gravity Support Forums Tag: submit - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 00:49:59 +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/submit" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Unable to submit using enter/return key in masked field in Internet Explorer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/unable-to-submit-using-enterreturn-key-in-masked-field-in-internet-explorer#post-376176</link>
			<pubDate>Tue, 27 Aug 2013 09:34:58 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">376176@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you still require assistance with this please open a new &#60;a href=&#34;http://www.gravityhelp.com/request-support/&#34; rel=&#34;nofollow&#34;&#62;support ticket&#60;/a&#62; or a &#60;a href=&#34;http://www.gravityhelp.com/priority-support/&#34; rel=&#34;nofollow&#34;&#62;priority support ticket&#60;/a&#62; if you are a developer license holder. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>motto on "Unable to submit using enter/return key in masked field in Internet Explorer"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/unable-to-submit-using-enterreturn-key-in-masked-field-in-internet-explorer#post-376173</link>
			<pubDate>Wed, 21 Aug 2013 09:27:48 +0000</pubDate>
			<dc:creator>motto</dc:creator>
			<guid isPermaLink="false">376173@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;storemachine, first of all I'm very sorry for not responding.&#60;/p&#62;
&#60;p&#62;The answer by Rob Harrell wasn't addressed to us, we never saw it at least, so thanks for showing us. Where exactly did you find this (URL)?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Form doesn&#039;t submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-doesnt-submit-1#post-376165</link>
			<pubDate>Sun, 28 Jul 2013 09:37:01 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">376165@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you still require assistance with this please open a new &#60;a href=&#34;http://www.gravityhelp.com/request-support/&#34; rel=&#34;nofollow&#34;&#62;support ticket&#60;/a&#62; or a &#60;a href=&#34;http://www.gravityhelp.com/priority-support/&#34; rel=&#34;nofollow&#34;&#62;priority support ticket&#60;/a&#62; if you are a developer license holder. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devEdge on "Block Form Access Based on Advanced User Authentication"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/block-form-access-based-on-advanced-user-authentication#post-362041</link>
			<pubDate>Thu, 04 Jul 2013 19:15:21 +0000</pubDate>
			<dc:creator>devEdge</dc:creator>
			<guid isPermaLink="false">362041@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok, I guess I asked the question too quickly. I was right about using the gform_pre_render filter. Here's basically what I did...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter( &#38;quot;gform_pre_render&#38;quot;, &#38;quot;block_user_render_form&#38;quot;, 100, 1 );
function block_user_render_form( $form ) {
//Put your form ID instead of 6
if ( $form[&#38;#39;id&#38;#39;] != 6 ) {
    return $form;
}
//test for authorization
if ( !$authorized ) {
   echo &#38;quot;&#38;lt;p&#38;gt;You are not authorized to do this.&#38;lt;/p&#38;gt;&#38;quot;;
   return null;
}
return $form;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The only caveat to returning a null form, is that GF will also output the following after the unauthorized message:&#60;br /&#62;
&#34;Oops! We could not locate your form.&#34;&#60;/p&#62;
&#60;p&#62;Which didn't bother me. But might for some...'&#60;/p&#62;
&#60;p&#62;Cheers!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devEdge on "Block Form Access Based on Advanced User Authentication"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/block-form-access-based-on-advanced-user-authentication#post-361993</link>
			<pubDate>Thu, 04 Jul 2013 17:55:18 +0000</pubDate>
			<dc:creator>devEdge</dc:creator>
			<guid isPermaLink="false">361993@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have a business directory website that allows a user to edit their business listing details (partially, at least). Each business listing (a custom post) is assigned the user as author. I use GF basically as a frontend editor, pulling in the post field values on the edit post form. Then, I've locked all these users out of the WordPress admin area. It's pretty cool actually...&#60;/p&#62;
&#60;p&#62;Here's the problem though. GF, by default, is only capable of creating new posts - not editing existing posts. Thus, when the edit form is called with an invalid post to edit (or none at all), GF defaults to creating a new post rather than displaying an unauthorized message. I need to change that.&#60;/p&#62;
&#60;p&#62;Is there a hook or filter I can use to add my own authentication logic and block the form when it is called? I was thinking the gform_pre_render filter might do the trick. Can I do my permissions check there and unset the form or something? Then echo an unauthorized message instead? How can I block the form from displaying (rendering at all actually)?&#60;/p&#62;
&#60;p&#62;By the way... GF does not respect the publish_posts capability in WordPress.&#60;/p&#62;
&#60;p&#62;Any thoughts?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Need to move Submit button to be in line with a field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-to-move-submit-button-to-be-in-line-with-a-field#post-360177</link>
			<pubDate>Wed, 03 Jul 2013 14:35:19 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">360177@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Madeleine, you're welcome.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>madoLATF on "Need to move Submit button to be in line with a field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-to-move-submit-button-to-be-in-line-with-a-field#post-360120</link>
			<pubDate>Wed, 03 Jul 2013 14:07:19 +0000</pubDate>
			<dc:creator>madoLATF</dc:creator>
			<guid isPermaLink="false">360120@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Richard!  I knew it was probably just a question of the margins I had to figure out, but since I'm an amateur coder &#38;amp; doing my own site (which is why I use Wordpress, iThemes, &#38;amp; Gravity Forms!), it would have taken me a week and loads of frustration to figure them out.&#60;/p&#62;
&#60;p&#62;Madeleine
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Need to move Submit button to be in line with a field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-to-move-submit-button-to-be-in-line-with-a-field#post-359376</link>
			<pubDate>Wed, 03 Jul 2013 06:12:30 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">359376@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Madeline,&#60;/p&#62;
&#60;p&#62;Try adding the following CSS to your theme's stylesheet or wherever you add custom CSS&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#gform_widget-2 .gform_footer.top_label {
    float: right;
    margin: -67px -100px 0 0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>madoLATF on "Need to move Submit button to be in line with a field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-to-move-submit-button-to-be-in-line-with-a-field#post-358352</link>
			<pubDate>Tue, 02 Jul 2013 17:45:45 +0000</pubDate>
			<dc:creator>madoLATF</dc:creator>
			<guid isPermaLink="false">358352@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm trying to do the same thing: submit button on an email sign-up.  Need it to float right so that widget bar isn't so tall.  &#60;a href=&#34;http://www.empoweredfrench.com&#34; rel=&#34;nofollow&#34;&#62;http://www.empoweredfrench.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks so much!&#60;br /&#62;
Madeleine
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "2 Kind of Submit Buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/2-kind-of-submit-buttons#post-343881</link>
			<pubDate>Tue, 25 Jun 2013 08:16:17 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">343881@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Nhan,&#60;/p&#62;
&#60;p&#62;You can enable conditional logic on the submit button and you can also enable a condition on your PayPal feed. So perhaps you can configure a field or fields on your form to accomodate that. Only one submit is possible.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
