<?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: How to add gravity forms to a custom page template/html file?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-gravity-forms-to-a-custom-page-templatehtml-file</link>
		<description>Gravity Support Forums Topic: How to add gravity forms to a custom page template/html file?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 12:05:52 +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/how-to-add-gravity-forms-to-a-custom-page-templatehtml-file" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "How to add gravity forms to a custom page template/html file?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-gravity-forms-to-a-custom-page-templatehtml-file#post-129737</link>
			<pubDate>Wed, 23 Jan 2013 19:29:06 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">129737@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I didn't read all the way to the first topic you posted.  Gravity Forms relies on WordPress functions, so you might need to strip down a template file and include your form in it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How to add gravity forms to a custom page template/html file?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-gravity-forms-to-a-custom-page-templatehtml-file#post-129735</link>
			<pubDate>Wed, 23 Jan 2013 19:26:53 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">129735@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We will need a link to the page on your site where we can see this.&#60;/p&#62;
&#60;p&#62;When a form is hidden with the &#34;display:none;&#34; it's usually because it has conditional logic, and it's all hidden by default until Gravity Forms' jQuery runs to remove that hidden attribute.  When there are JavaScript errors on the page, or you do not include the Gravity Forms scripts, the form will not be displayed.&#60;/p&#62;
&#60;p&#62;In your second comment, that is not the correct way to add Gravity Forms scripts.  Please use the gravity_form_enqueue_scripts function:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gravity_form_enqueue_scripts&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gravity_form_enqueue_scripts&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It's also documented on the page where the function call method of embedded a form is explained: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Embedding_A_Form#Function_Call&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Embedding_A_Form#Function_Call&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luxerman on "How to add gravity forms to a custom page template/html file?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-gravity-forms-to-a-custom-page-templatehtml-file#post-129617</link>
			<pubDate>Wed, 23 Jan 2013 14:26:58 +0000</pubDate>
			<dc:creator>luxerman</dc:creator>
			<guid isPermaLink="false">129617@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm getting a:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;element.style {
    display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;when viewing it under firebug for some reason?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luxerman on "How to add gravity forms to a custom page template/html file?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-gravity-forms-to-a-custom-page-templatehtml-file#post-129614</link>
			<pubDate>Wed, 23 Jan 2013 14:23:37 +0000</pubDate>
			<dc:creator>luxerman</dc:creator>
			<guid isPermaLink="false">129614@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I added the following codes to the header:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;link rel=&#38;quot;stylesheet&#38;quot; href=&#38;quot;/wp-content/plugins/gravityforms/css/forms.css&#38;quot;&#38;gt;
&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;/wp-content/plugins/gravityforms/js/gravityforms.js?ver=1.6.11&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;/wp-content/plugins/gravityforms/js/conditional_logic.js?ver=1.6.11&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;but nothing appears... I've tried both the following within the php file:&#60;/p&#62;
&#60;p&#62;(&#38;lt;?php gravity_form(1, false, false, false, '', false); ?&#38;gt;) and ([gravityform id=1 title=false description=false])&#60;/p&#62;
&#60;p&#62;The funny thing is... I can't see the form but it appears within the pages source file. So why is it loading, but not showing?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luxerman on "How to add gravity forms to a custom page template/html file?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-add-gravity-forms-to-a-custom-page-templatehtml-file#post-129603</link>
			<pubDate>Wed, 23 Jan 2013 13:52:01 +0000</pubDate>
			<dc:creator>luxerman</dc:creator>
			<guid isPermaLink="false">129603@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I created a custom page template that uses static HTML, so it's not calling the header, basic css or js files that a regular wordpress theme would have.&#60;/p&#62;
&#60;p&#62;Picture a static HTML page... How would I add form #1 to it?&#60;/p&#62;
&#60;p&#62;thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
