<?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: Not Recieving Entries</title>
		<link>https://legacy.forums.gravityhelp.com/topic/not-recieving-entries</link>
		<description>Gravity Support Forums Topic: Not Recieving Entries</description>
		<language>en-US</language>
		<pubDate>Sun, 12 Apr 2026 23:40:49 +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/not-recieving-entries" rel="self" type="application/rss+xml" />

		<item>
			<title>kyle on "Not Recieving Entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-recieving-entries#post-44863</link>
			<pubDate>Fri, 23 Dec 2011 00:43:43 +0000</pubDate>
			<dc:creator>kyle</dc:creator>
			<guid isPermaLink="false">44863@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I notice when I submit, but there is an error, the form is still there, it just moves out of the bounds of the slider, so you can't see it.  If you have Firebug and Firefix, you can use it to see the issue.&#60;/p&#62;
&#60;p&#62;There is a float: right set on one of the divs (under the video div I think ), that when removed will reveal the form again.  Although errors don't show up correctly.&#60;/p&#62;
&#60;p&#62;The HTML/CSS is pretty extensive, which I am sure is part of the issue.  Try disabling your custom styles and see how that works. Then re-add them slowly, testing as you go (but not inline, use your Stylesheet)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>satori83 on "Not Recieving Entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-recieving-entries#post-44861</link>
			<pubDate>Fri, 23 Dec 2011 00:13:41 +0000</pubDate>
			<dc:creator>satori83</dc:creator>
			<guid isPermaLink="false">44861@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I since the site is only the homepage and a blog I tried the straight enqueue script in the header.php and that didnt work and threw off al the css I did.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>satori83 on "Not Recieving Entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-recieving-entries#post-44853</link>
			<pubDate>Thu, 22 Dec 2011 23:52:50 +0000</pubDate>
			<dc:creator>satori83</dc:creator>
			<guid isPermaLink="false">44853@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for your quick reply, however Im not sure I am implementing it correctly.&#60;br /&#62;
I followed it literally and placed this inside the bottom of the functions.php.&#60;br /&#62;
 `if ( is_home() ) {&#38;lt;?php&#60;br /&#62;
gravity_form_enqueue_scripts(1, true);&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
}`&#60;/p&#62;
&#60;p&#62;That caused parsing errors in the dashboard. So, I tried&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ( is_home() ) {
gravity_form_enqueue_scripts(1, true);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I havent learned php yet so I probably messed it up because the second way didnt work either and the form disappears still after submission.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Not Recieving Entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-recieving-entries#post-44843</link>
			<pubDate>Thu, 22 Dec 2011 18:28:09 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">44843@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The issue is how you have implemented it.  I'm not familiar with the Anything slider.  But you have to be careful when using Gravity Forms outside of a standard WordPress page or post using the shortcode.  &#60;/p&#62;
&#60;p&#62;If the shortcode isn't called from a standard loop in a standard page or post then it isn't going to be able to enqueue it's scripts or CSS.  Because you have implemented it using the Anything slider, that is going to be the case with your implementation.&#60;/p&#62;
&#60;p&#62;What you need to do is first you need to make sure you manually enqueue the necessary scripts and CSS for Gravity Forms on your homepage.  You would do this by using the gravity_form_enqueue_scripts function.  This function is documented here:&#60;/p&#62;
&#60;p&#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;You would use this function in your themes functions.php file.  If you only need this for the homepage then you should wrap the function call in an if statement that checks if it's the homepage or not.  For example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ( is_home() ) {
    // This is a homepage place the function within this if statement
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The other thing you are going to want to do is because the form appears in a slider, you want to enable the AJAX option on the form shortcode or function call.  This way when the form is submitted it does not refresh the page which could cause problems with the slider when the page refreshes.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>satori83 on "Not Recieving Entries"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-recieving-entries#post-44823</link>
			<pubDate>Thu, 22 Dec 2011 17:29:30 +0000</pubDate>
			<dc:creator>satori83</dc:creator>
			<guid isPermaLink="false">44823@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I made a form and styled it up to be placed inside Anything slider that accepts HTML. However when I went to test it the form disappears after submitting and the entry is not passed to backend. What could be going on?&#60;br /&#62;
Heres the form....http://www.bestkarateclassesforkids.com/
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
