<?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: Form Not showing if any field</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-not-showing-if-any-field</link>
		<description>Gravity Support Forums Topic: Form Not showing if any field</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 14:54:57 +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/form-not-showing-if-any-field" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Form Not showing if any field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-showing-if-any-field#post-7701</link>
			<pubDate>Fri, 23 Jul 2010 09:25:30 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">7701@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;wp_head()&#60;br /&#62;
Goes in the &#38;lt;head&#38;gt; element of a theme, in header.php&#60;/p&#62;
&#60;p&#62;wp_footer()&#60;br /&#62;
Goes in footer.php, just before the closing &#38;lt;/body&#38;gt; tag&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Theme_Development&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Theme_Development&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dymon85 on "Form Not showing if any field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-showing-if-any-field#post-7700</link>
			<pubDate>Fri, 23 Jul 2010 09:12:56 +0000</pubDate>
			<dc:creator>dymon85</dc:creator>
			<guid isPermaLink="false">7700@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;page.php looks like this  &#38;lt;?php get_header(); ?&#38;gt;&#60;br /&#62;
&#38;lt;div class=&#34;page_title&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;div class=&#34;page_title_inner&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div class=&#34;wrap&#34;&#38;gt;&#38;lt;h1&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h1&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;div class=&#34;content&#34; &#38;gt;&#60;br /&#62;
		&#38;lt;div class=&#34;wrap&#34;&#38;gt;&#60;br /&#62;
		&#38;lt;?php require_once('loop.php'); ?&#38;gt;&#60;br /&#62;
        &#38;lt;/div&#38;gt;&#60;br /&#62;
	&#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;?php get_footer(); ?&#38;gt;  how to and where to place those two functions you've mentioned?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form Not showing if any field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-showing-if-any-field#post-7699</link>
			<pubDate>Fri, 23 Jul 2010 09:06:44 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">7699@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Are you using the shortcode or the function call to embed your form, or perhaps a widget?&#60;/p&#62;
&#60;p&#62;If you're using a shortcode, make sure your theme has the wp_head() function call in the header.php file and the wp_footer() function included in your footer.php file. Gravity forms uses those functions to add the necessary scripts for conditional logic.&#60;/p&#62;
&#60;p&#62;When using a Gravity Form in a sidebar widget or embedding it anywhere using the function call, you need to manually enqueue the scripts and CSS by placing a short script block in your theme's functions.php file.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;wp_enqueue_script(&#38;quot;gforms_ui_datepicker&#38;quot;, WP_PLUGIN_URL . &#38;quot;/gravityforms/js/jquery-ui/ui.datepicker.js&#38;quot;, array(&#38;quot;jquery&#38;quot;), &#38;quot;1.3.9&#38;quot;, true);

wp_enqueue_script(&#38;quot;gforms_datepicker&#38;quot;, WP_PLUGIN_URL . &#38;quot;/gravityforms/js/datepicker.js&#38;quot;, array(&#38;quot;gforms_ui_datepicker&#38;quot;), &#38;quot;1.3.9&#38;quot;, true);

wp_enqueue_script(&#38;quot;gforms_conditional_logic_lib&#38;quot;, WP_PLUGIN_URL . &#38;quot;/gravityforms/js/conditional_logic.js&#38;quot;, array(&#38;quot;gforms_ui_datepicker&#38;quot;), &#38;quot;1.3.9&#38;quot;, true);

wp_enqueue_style(&#38;quot;gforms_css&#38;quot;, WP_PLUGIN_URL . &#38;quot;/gravityforms/css/forms.css&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Without this, the conditional logic scripts, datepicker script, form CSS and other elements needed for the full form functionality aren't loaded.&#60;/p&#62;
&#60;p&#62;You can find more information at the URL below&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/embedding-a-form/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/embedding-a-form/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dymon85 on "Form Not showing if any field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-showing-if-any-field#post-7696</link>
			<pubDate>Fri, 23 Jul 2010 08:57:27 +0000</pubDate>
			<dc:creator>dymon85</dc:creator>
			<guid isPermaLink="false">7696@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;My form is not showing, if any of the field has the &#34;Enable Conditional Logic (?)&#34; check box enabled? driving me mad. I've checked the demo admin page for the sample conditional logic form and none of the fields had conditional logic enable ? Please somebody help urgently.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
