<?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: Need Help with Thesis custom_functions.php and WP Shortcodes</title>
		<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-thesis-custom_functionsphp-and-wp-shortcodes</link>
		<description>Gravity Support Forums Topic: Need Help with Thesis custom_functions.php and WP Shortcodes</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 20:02:53 +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/need-help-with-thesis-custom_functionsphp-and-wp-shortcodes" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "Need Help with Thesis custom_functions.php and WP Shortcodes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-thesis-custom_functionsphp-and-wp-shortcodes#post-40443</link>
			<pubDate>Tue, 08 Nov 2011 11:36:27 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">40443@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is causing your style issue on the column:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.custom #gform_wrapper_1 .gf_right_third {
    width: 145px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Remove that (in custom.css) and it lines back up.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>flyinstyle on "Need Help with Thesis custom_functions.php and WP Shortcodes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-thesis-custom_functionsphp-and-wp-shortcodes#post-40437</link>
			<pubDate>Tue, 08 Nov 2011 11:31:02 +0000</pubDate>
			<dc:creator>flyinstyle</dc:creator>
			<guid isPermaLink="false">40437@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you Rob!&#60;/p&#62;
&#60;p&#62;I don't see a reference in header.php of Thesis Theme for wp_head() and it would get removed on upgrade as well.&#60;/p&#62;
&#60;p&#62;So I tried writing a function, but it doesn't seem to include the css file in the header. Is there something I'm missing.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function gf_enqueue() {
	gravity_form_enqueue_scripts(1, true);

} add_action(&#38;#39;wp_head&#38;#39; , &#38;#39;gf_enqueue&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As well, does anyone have an idea why the last three fields in my third column &#34;gf_right_three&#34; are skewed?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.flyinstyle.biz/test-quote2/&#34; rel=&#34;nofollow&#34;&#62;http://www.flyinstyle.biz/test-quote2/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Need Help with Thesis custom_functions.php and WP Shortcodes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-thesis-custom_functionsphp-and-wp-shortcodes#post-40422</link>
			<pubDate>Tue, 08 Nov 2011 10:13:51 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">40422@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're going to need to enqueue the gravity forms scripts and styles when placing a form via a function call. See this:&#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;</description>
		</item>
		<item>
			<title>flyinstyle on "Need Help with Thesis custom_functions.php and WP Shortcodes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-thesis-custom_functionsphp-and-wp-shortcodes#post-40419</link>
			<pubDate>Tue, 08 Nov 2011 10:10:22 +0000</pubDate>
			<dc:creator>flyinstyle</dc:creator>
			<guid isPermaLink="false">40419@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Everyone!&#60;/p&#62;
&#60;p&#62;I'm having trouble when calling my Gravity Forms shortcode from within a function on a page. I'm not sure why, but the formatting of the form seems to disappear this way.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.flyinstyle.biz/test-quote/&#34; rel=&#34;nofollow&#34;&#62;http://www.flyinstyle.biz/test-quote/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The PHP code I'm using for this is:&#60;br /&#62;
&#60;code&#62;&#38;lt;?php echo do_shortcode(&#38;#39;[gravityform id=&#38;quot;1&#38;quot; name=&#38;quot;Free Quotes for Business and First Class Flights&#38;quot; title=&#38;quot;true&#38;quot; description=&#38;quot;false&#38;quot; ajax=&#38;quot;true&#38;quot;]&#38;#39;);?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;When copying the same code onto a new page, the however seems to style properly&#60;br /&#62;
&#60;a href=&#34;http://www.flyinstyle.biz/test-quote2/&#34; rel=&#34;nofollow&#34;&#62;http://www.flyinstyle.biz/test-quote2/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;When adding the same code without the PHP call into a post, the form seems to render the columns.&#60;br /&#62;
&#60;code&#62;[gravityform id=&#38;quot;1&#38;quot; name=&#38;quot;Free Quotes for Business and First Class Flights&#38;quot; title=&#38;quot;true&#38;quot; description=&#38;quot;false&#38;quot; ajax=&#38;quot;true&#38;quot;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;-=-&#60;/p&#62;
&#60;p&#62;Also the last three fields in column three seem to have some extra spacing which pushes them to the right. Not sure why, but I'd like to have it removed as well.&#60;/p&#62;
&#60;p&#62;Any help would be appreciated! Thanks :-)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
