<?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 in the sidebar of wordpress</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-in-the-sidebar-of-wordpress</link>
		<description>Gravity Support Forums Topic: Form in the sidebar of wordpress</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 05:39:06 +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-in-the-sidebar-of-wordpress" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Form in the sidebar of wordpress"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-in-the-sidebar-of-wordpress#post-5469</link>
			<pubDate>Fri, 14 May 2010 16:15:37 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">5469@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Contact me via email at carl-at-rocketgenius.com and email me your functions.php file as an attachment and i'll take a look at it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>benclowney on "Form in the sidebar of wordpress"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-in-the-sidebar-of-wordpress#post-5468</link>
			<pubDate>Fri, 14 May 2010 16:04:21 +0000</pubDate>
			<dc:creator>benclowney</dc:creator>
			<guid isPermaLink="false">5468@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi again - sorry, must be doing something wrong. I've pasted that code into functions.php and it hasn't made any difference. Output CSS is turned on. Is there anything else I should be doing?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form in the sidebar of wordpress"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-in-the-sidebar-of-wordpress#post-5415</link>
			<pubDate>Wed, 12 May 2010 09:23:30 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">5415@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It needs to be wrapped with an opening and closing php tag..&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

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;);

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;usually, themes already have some code in the functions.php file and you simply include the code snippet between the tags.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>benclowney on "Form in the sidebar of wordpress"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-in-the-sidebar-of-wordpress#post-5413</link>
			<pubDate>Wed, 12 May 2010 09:11:22 +0000</pubDate>
			<dc:creator>benclowney</dc:creator>
			<guid isPermaLink="false">5413@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi am having trouble with - am a complete novice when it comes to PHP. Are you able to set out exactly what I need to do to fix the sidebar formatting problems?&#60;/p&#62;
&#60;p&#62;I tried copying and pasting the code from your link above into my functions.php file, but it caused problems. Does it need extra code around it?&#60;/p&#62;
&#60;p&#62;Many thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form in the sidebar of wordpress"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-in-the-sidebar-of-wordpress#post-5351</link>
			<pubDate>Mon, 10 May 2010 08:51:19 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">5351@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can add a Gravity Form to your sidebar manually with a &#60;a href=&#34;http://www.gravityhelp.com/documentation/embedding-a-form/&#34; rel=&#34;nofollow&#34;&#62;function call&#60;/a&#62; or by using something like the &#60;a href=&#34;http://yoast.com/gravity-forms-widget-update/&#34; rel=&#34;nofollow&#34;&#62;Gravity Forms Widget from Yoast&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;In both cases, you'll need to add a little script to your functions.php file to enqueue all of the necessary Gravity Forms stylesheets and scripts. You can find more information about &#60;a href=&#34;http://www.gravityhelp.com/documentation/embedding-a-form/&#34; rel=&#34;nofollow&#34;&#62;embedding a form in the documentation&#60;/a&#62;.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vinaykumar on "Form in the sidebar of wordpress"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-in-the-sidebar-of-wordpress#post-5348</link>
			<pubDate>Mon, 10 May 2010 01:08:09 +0000</pubDate>
			<dc:creator>vinaykumar</dc:creator>
			<guid isPermaLink="false">5348@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to add gravity form in the sidebar of the wordpress blog?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
