<?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: Conditional from with no Submit button</title>
		<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button</link>
		<description>Gravity Support Forums Topic: Conditional from with no Submit button</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 07:50: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/topic/conditional-from-with-no-submit-button" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-42499</link>
			<pubDate>Tue, 29 Nov 2011 19:26:37 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42499@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It's difficult to be able to say without being able to see the page.  If you can post a link to the page so we can browse to it and inspect the markup, we can take a look.&#60;/p&#62;
&#60;p&#62;One thing to try is changing this:&#60;/p&#62;
&#60;p&#62;display: none;&#60;/p&#62;
&#60;p&#62;To this:&#60;/p&#62;
&#60;p&#62;display: none!important;&#60;/p&#62;
&#60;p&#62;OR this:&#60;/p&#62;
&#60;p&#62;display: hidden;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>grah7830 on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-42486</link>
			<pubDate>Tue, 29 Nov 2011 17:34:37 +0000</pubDate>
			<dc:creator>grah7830</dc:creator>
			<guid isPermaLink="false">42486@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That's what I thought, but I'm adding this to the bottom of my theme's CSS file and it doesn't seem to work:&#60;/p&#62;
&#60;p&#62;.gform_wrapper .gform_footer input.button,&#60;br /&#62;
.gform_wrapper .gform_footer input[type=submit] {&#60;br /&#62;
	font-size: 1em;&#60;br /&#62;
	display: none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Am I missing something?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-42484</link>
			<pubDate>Tue, 29 Nov 2011 17:26:25 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42484@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;To hide the submit button using CSS you would add custom CSS to your themes stylesheet to target and apply the necessary styles to that HTML element.&#60;/p&#62;
&#60;p&#62;Here is an example of how to target the submit button using CSS:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples#Submit_Button&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples#Submit_Button&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You would have to start with this example and then apply display: none; to it using CSS. Using display: none and applying it to that button element should make the submit button not appear to the user.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>grah7830 on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-42481</link>
			<pubDate>Tue, 29 Nov 2011 17:20:39 +0000</pubDate>
			<dc:creator>grah7830</dc:creator>
			<guid isPermaLink="false">42481@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Basically, I'm using the plug-in to create a questionnaire that, depending on the options chosen, displays a different end result.&#60;/p&#62;
&#60;p&#62;I spoke with you over email last night before purchasing the plug-in.  I asked if there was a way to add conditional confirmations or redirects, but realized that there was a much easier solution for my needs.  Instead, I'm able to use the HTML fields to display the information I wanted to use conditional confirmations or redirects for...and because I don't actually need users to submit the form, just complete it to reveal the information they need, this will work perfectly for me.&#60;/p&#62;
&#60;p&#62;I'm able to hide the submit button on every question conditionally, except for the first question in the form because there's no question that precedes it.&#60;/p&#62;
&#60;p&#62;Example:&#60;/p&#62;
&#60;p&#62;1. Choose A, B, or C&#60;/p&#62;
&#60;p&#62;If A, display 2&#60;br /&#62;
If B, display 3&#60;br /&#62;
If C, display 4&#60;/p&#62;
&#60;p&#62;2. Choose G, H, or I&#60;/p&#62;
&#60;p&#62;If G, display 5&#60;br /&#62;
If H, display 6&#60;br /&#62;
If I, display 7&#60;/p&#62;
&#60;p&#62;3. Choose J, K, or L&#60;/p&#62;
&#60;p&#62;If J, display 8&#60;br /&#62;
If K, display 9&#60;br /&#62;
If L, display 10&#60;/p&#62;
&#60;p&#62;4. Choose M, N, or O&#60;/p&#62;
&#60;p&#62;etc...&#60;/p&#62;
&#60;p&#62;Where 5, 6, 7... are HTML fields that contain information based on how the user answered the preceding question.&#60;/p&#62;
&#60;p&#62;I can hide the submit button on questions 2, 3, 4... conditionally, but not on question 1.  I have everything working perfectly, I just need to know how to hide the submit button on question 1.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-42476</link>
			<pubDate>Tue, 29 Nov 2011 17:06:10 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42476@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@grah7830 What exactly are you trying to do? Can you explain your use case so we can know about what you are trying to do and why you need to hide the submit button in a situation where you aren't using conditional logic?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>grah7830 on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-42457</link>
			<pubDate>Tue, 29 Nov 2011 16:27:15 +0000</pubDate>
			<dc:creator>grah7830</dc:creator>
			<guid isPermaLink="false">42457@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Could someone share how to hide the submit button with CSS?  I understand how to hide it conditionally throughout the form, but it still appears on the first question...and I would prefer it not to.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-30243</link>
			<pubDate>Mon, 18 Jul 2011 01:04:23 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">30243@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There's no need to send an email confirmation.  You don't have to send an admin or user confirmation message.    You could just display their results for them in the confirmation page as Kevin described.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-30240</link>
			<pubDate>Sun, 17 Jul 2011 23:16:15 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">30240@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, you could do that too I suppose. Just pass the field values via a querystring to a confirmation page that uses php to grab the variables and display the results.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>draivika on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-30239</link>
			<pubDate>Sun, 17 Jul 2011 21:42:10 +0000</pubDate>
			<dc:creator>draivika</dc:creator>
			<guid isPermaLink="false">30239@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Makes sense. What about using the submit button to simply bring them to a results page instead of sending an email, so for example, &#34;submit to get your results&#34; which sends an email to a nonexistent address, and gives them a results page with the appropriate info?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Conditional from with no Submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-from-with-no-submit-button#post-30238</link>
			<pubDate>Sun, 17 Jul 2011 21:37:24 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">30238@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There's not a way to hide the button completely since the forms are intended to be submitted and capture information. You could hide the button with CSS to prevent them from submitting the form.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
