<?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: Fields not showing, even with conditional logic disabled</title>
		<link>https://legacy.forums.gravityhelp.com/topic/fields-not-showing-even-with-conditional-logic-disabled</link>
		<description>Gravity Support Forums Topic: Fields not showing, even with conditional logic disabled</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 09:05:17 +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/fields-not-showing-even-with-conditional-logic-disabled" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Fields not showing, even with conditional logic disabled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-not-showing-even-with-conditional-logic-disabled#post-34025</link>
			<pubDate>Wed, 31 Aug 2011 13:26:52 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">34025@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That was going to be my second suggestion.  The sharebar plugin has a JavaScript error as well.  I would contact the author of that plugin and see if they can fix the plugin or have a workaround.&#60;/p&#62;
&#60;p&#62;It has been reported before but no resolution.&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/form-not-displaying&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/form-not-displaying&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bernardopina on "Fields not showing, even with conditional logic disabled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-not-showing-even-with-conditional-logic-disabled#post-34024</link>
			<pubDate>Wed, 31 Aug 2011 12:44:58 +0000</pubDate>
			<dc:creator>bernardopina</dc:creator>
			<guid isPermaLink="false">34024@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Chris,&#60;/p&#62;
&#60;p&#62;I tried to change that function (it's within my theme), but i got nothing. Same problem.&#60;/p&#62;
&#60;p&#62;When i came down to try to turn off some plugins, i noticed that when i turn off sharebar, the form shows up. Do you know a workarround so i can use both plugins?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Fields not showing, even with conditional logic disabled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-not-showing-even-with-conditional-logic-disabled#post-33993</link>
			<pubDate>Wed, 31 Aug 2011 00:57:12 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">33993@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The issue is caused by either a plugin conflict or theme conflict.  &#60;/p&#62;
&#60;p&#62;I am going to guess it's from the Superfish menu and the JavaScript error &#34;$ is not a function.&#34;  Fix your Superfish menu and I think you will find Gravity Forms with conditional logic will work.&#60;/p&#62;
&#60;p&#62;What you have now:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[js]
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
$(document).ready(function() {
    $(&#38;#39;#topnav ul&#38;#39;).superfish({
        delay:       1000,
        animation:   {opacity:&#38;#39;show&#38;#39;,height:&#38;#39;show&#38;#39;},
        speed:       &#38;#39;slow&#38;#39;,
        autoArrows:  false,
        dropShadows: false
    });
});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;What it probably needs to be:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[js]
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery(document).ready(function() {
    jQuery(&#38;#39;#topnav ul&#38;#39;).superfish({
        delay:       1000,
        animation:   {opacity:&#38;#39;show&#38;#39;,height:&#38;#39;show&#38;#39;},
        speed:       &#38;#39;slow&#38;#39;,
        autoArrows:  false,
        dropShadows: false
    });
});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
Change the $ to jQuery in two places.  The formatting above does not make that very clear.&#60;/p&#62;
&#60;p&#62;Thank you for posting the URL to your site.  It makes troubleshooting so much easier.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bernardopina on "Fields not showing, even with conditional logic disabled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-not-showing-even-with-conditional-logic-disabled#post-33980</link>
			<pubDate>Tue, 30 Aug 2011 23:28:26 +0000</pubDate>
			<dc:creator>bernardopina</dc:creator>
			<guid isPermaLink="false">33980@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Well, after much research, i came to this link (&#60;a href=&#34;http://www.gravityhelp.com/question/why-is-there-a-style-attribute-of-displaynone-being-added-my-form-isnt-showing-up/)&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/question/why-is-there-a-style-attribute-of-displaynone-being-added-my-form-isnt-showing-up/)&#60;/a&#62;, wich basically tell me that if the conditional logic is enabled and my theme doesnt have the function cal wp_footer(), the form will not show.&#60;/p&#62;
&#60;p&#62;Well, i can tell my theme have the wp_footer() call and when the conditional logic is enabled on some fields, the form simply doesnt show. Ive tried on every browser i know and the result is the same. Even in the pre-visualization (wich doesnt use my theme) i cant see the form.&#60;/p&#62;
&#60;p&#62;You can see my form here: &#60;a href=&#34;http://www.produzindo.net/pesquisa-de-perfil-e-de-opiniao/&#34; rel=&#34;nofollow&#34;&#62;http://www.produzindo.net/pesquisa-de-perfil-e-de-opiniao/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;As you can see, the style:none is there. What can i do?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
