<?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: Enabling conditional logic causes form to disappear</title>
		<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear</link>
		<description>Gravity Support Forums Topic: Enabling conditional logic causes form to disappear</description>
		<language>en-US</language>
		<pubDate>Mon, 06 Apr 2026 18:39:34 +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/enabling-conditional-logic-causes-form-to-disappear" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33710</link>
			<pubDate>Sat, 27 Aug 2011 15:39:30 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">33710@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the tip.  Glad you were able to resolve your issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karlbitz on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33686</link>
			<pubDate>Sat, 27 Aug 2011 12:54:52 +0000</pubDate>
			<dc:creator>karlbitz</dc:creator>
			<guid isPermaLink="false">33686@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This was solved because the datepicker jQuery call to set the minDate option seemed to be causing errors if it wasn't actually used on the page. I used a conditional if(is_page(id)) PHP line to only output the minDate lines on the relevant pages. Probably something good to note when recommending people add the jQuery calls to set a min date blindly in their theme's header.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karlbitz on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33648</link>
			<pubDate>Fri, 26 Aug 2011 13:54:14 +0000</pubDate>
			<dc:creator>karlbitz</dc:creator>
			<guid isPermaLink="false">33648@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Not really - I'll experiment with the above. When I remove that code, everything works as expected, when I have it present, conditional logic breaks. I'll echo back if I figure it out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33640</link>
			<pubDate>Fri, 26 Aug 2011 11:25:06 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">33640@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Karl,&#60;/p&#62;
&#60;p&#62;Could you recreate this issue on a WP install that we could access?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karlbitz on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33597</link>
			<pubDate>Thu, 25 Aug 2011 19:53:20 +0000</pubDate>
			<dc:creator>karlbitz</dc:creator>
			<guid isPermaLink="false">33597@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've narrowed it down to this piece of code I added to header.php provide min_dates to some of my forms. The form id I'm having problems with is 12 for reference.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
	jQuery.noConflict();
	jQuery(document).ready(function($) {
		$( &#38;quot;#input_1_2&#38;quot; ).datepicker({ defaultDate: &#38;#39;+1d&#38;#39;, minDate: &#38;#39;+1d&#38;#39;, gotoCurrent: true });
		$( &#38;quot;#input_1_3&#38;quot; ).datepicker({ defaultDate: &#38;#39;+2d&#38;#39;, minDate: &#38;#39;+2d&#38;#39;, gotoCurrent: true });
		$( &#38;quot;#input_10_10&#38;quot; ).datepicker({ defaultDate: &#38;#39;+1d&#38;#39;, minDate: &#38;#39;+1d&#38;#39;, gotoCurrent: true});
	});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>karlbitz on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33594</link>
			<pubDate>Thu, 25 Aug 2011 18:23:47 +0000</pubDate>
			<dc:creator>karlbitz</dc:creator>
			<guid isPermaLink="false">33594@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I can't - it's an internal site, so I'll keep investigating. Every form works fine except those with conditional logic based on a dropdown field. No ideas? Conditional logic based on a radio button field works fine.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33585</link>
			<pubDate>Thu, 25 Aug 2011 16:45:35 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">33585@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It's a theme problem. Can you provide a link to the page containing the form so we can take a look? If we can see the page we can debug the issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>karlbitz on "Enabling conditional logic causes form to disappear"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enabling-conditional-logic-causes-form-to-disappear#post-33568</link>
			<pubDate>Thu, 25 Aug 2011 15:55:57 +0000</pubDate>
			<dc:creator>karlbitz</dc:creator>
			<guid isPermaLink="false">33568@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello -&#60;/p&#62;
&#60;p&#62;I'm having issues with conditional logic based on dropdown fields. I've looked at other threads and nothing seems to fix my issue. I'm using a theme I wrote myself - what's strange is that one form I have works fine with conditional logic, the only difference is that the logic is based on radio buttons rather than a dropdown.&#60;/p&#62;
&#60;p&#62;* wp_head and wp_footer are called correctly&#60;br /&#62;
* mod_security is not installed on my server&#60;br /&#62;
* file permissions are correct&#60;br /&#62;
* no 404 errors, I can view every .js file called in the page source&#60;br /&#62;
* no errors at all, page is just blank, but all the form fields are present in the source&#60;br /&#62;
* AJAX works on all forms (date picker is proof)&#60;br /&#62;
* form in question works in preview mode, and in the default wordpress theme&#60;/p&#62;
&#60;p&#62;I know that it is something wrong with my theme, but I'm out of ideas.&#60;/p&#62;
&#60;p&#62;Thoughts?&#60;/p&#62;
&#60;p&#62;Wordpress version: 3.2.1&#60;br /&#62;
Gravity forms version: Latest&#60;br /&#62;
PHP version: 5.3
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
