<?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 Tag: hidden - Recent Posts</title>
		<link>https://legacy.forums.gravityhelp.com/tags/hidden</link>
		<description>Gravity Support Forums Tag: hidden - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 16:33:44 +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/tags/hidden" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "Variable Pricing Multiplier Option Instead of Fixed Price"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/variable-pricing-multiplier-option-instead-of-fixed-price#post-317008</link>
			<pubDate>Tue, 11 Jun 2013 09:34:54 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">317008@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You use a Product Field and change its type to calculation. You then use Merge Tags related to your data collection fields, some bedmas math and you'll be able to create a calculation based on what the user enters/selects.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Variable Pricing Multiplier Option Instead of Fixed Price"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/variable-pricing-multiplier-option-instead-of-fixed-price#post-316474</link>
			<pubDate>Tue, 11 Jun 2013 01:45:07 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">316474@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I need this exactly, was there ever an answer for this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-258220</link>
			<pubDate>Fri, 17 May 2013 16:10:43 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">258220@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're welcome and yes enqueueing jQuery in that way uses the copy included with wordpress which with WP 3.5.1 is jQuery 1.8.3, and when WP 3.6 is released later this month it will be updated to at least v1.9.1 unless you install the &#60;a href=&#34;http://wordpress.org/extend/plugins/use-google-libraries/&#34; rel=&#34;nofollow&#34;&#62;Use Google Libraries plugin&#60;/a&#62; which will automatically use the Google CDN hosted copy of the same version.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cdolan on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-258156</link>
			<pubDate>Fri, 17 May 2013 15:20:14 +0000</pubDate>
			<dc:creator>cdolan</dc:creator>
			<guid isPermaLink="false">258156@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you very much! Had no idea wp_head would be an issue. Thats also a much handier way of calling jQuery. Out of curiosity, where is it pulling that? Wordpress 3.5.X's installed jQuery package? &#60;/p&#62;
&#60;p&#62;Charlie
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-257986</link>
			<pubDate>Fri, 17 May 2013 13:07:41 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">257986@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Regarding your general site header the wp_head function is missing which is probably why plugins are including their stylesheets in the footer, you can add it before the closing head tag like so&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php wp_head(); ?&#38;gt;
&#38;lt;/head&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I would also advise against including jquery like this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://code.jquery.com/jquery-latest.min.js &#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;instead I would recommend you include it like so, other plugins will see this and know not to include it again.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php wp_enqueue_script(&#38;quot;jquery&#38;quot;); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Other than that everything else looks OK.&#60;/p&#62;
&#60;p&#62;Edit: I should probably clarify the best order would be like so&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/* your stylesheets go here */
&#38;lt;?php wp_enqueue_script(&#38;quot;jquery&#38;quot;); ?&#38;gt;
&#38;lt;?php wp_head(); ?&#38;gt;
/* your other scripts go here */
&#38;lt;/head&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>cdolan on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-257949</link>
			<pubDate>Fri, 17 May 2013 12:51:10 +0000</pubDate>
			<dc:creator>cdolan</dc:creator>
			<guid isPermaLink="false">257949@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;My general site header : &#60;a href=&#34;http://pastebin.com/BSzMcuCa&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/BSzMcuCa&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Added header files for this page: &#60;a href=&#34;http://pastebin.com/SsKvKm19&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/SsKvKm19&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Functions for this theme: &#60;a href=&#34;http://pastebin.com/gk86mftG&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/gk86mftG&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;My page Template: &#60;a href=&#34;http://pastebin.com/iUepW1HY&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/iUepW1HY&#60;/a&#62; (where I am calling G-Forms via PHP)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-257876</link>
			<pubDate>Fri, 17 May 2013 12:14:44 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">257876@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Strange, can you post the code from your header and functions files as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cdolan on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-257863</link>
			<pubDate>Fri, 17 May 2013 12:09:00 +0000</pubDate>
			<dc:creator>cdolan</dc:creator>
			<guid isPermaLink="false">257863@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Richard, &#60;/p&#62;
&#60;p&#62;Thank you - I think I accidentaly reverted to an older header file since my last post :(&#60;/p&#62;
&#60;p&#62;I believe I have the correct jQuery versions now, but the footer issue is baffling me. I don't call anything in the footer except for child posts to serve links, some css, and wp_footer()&#60;/p&#62;
&#60;p&#62;see my footer code here: &#60;a href=&#34;http://pastebin.com/xpPZ8RZK&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/xpPZ8RZK&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Is it possible this css is getting called from somewhere else?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-257847</link>
			<pubDate>Fri, 17 May 2013 11:44:04 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">257847@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Charlie, as I mentioned in response to your &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/upgrading-to-172-from-16-forms-lost&#34; rel=&#34;nofollow&#34;&#62;previous topic&#60;/a&#62; your issues are down to your theme including multiple old versions of jQuery in the head, you need to remove these two script calls from your themes header.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script language=&#38;quot;javascript&#38;quot; type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://sequoiawaste.com/wp-content/themes/sequoia/homejs/jquery-1.2.6.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And then you have the correct version down in the footer&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://sequoiawaste.com/wp-includes/js/jquery/jquery.js?ver=1.8.3&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also being loaded in your footer are the Gravity Forms stylesheets, stylesheets should always be loaded in the head of page, the Gravity Forms plugin won't be responsible for this, I am only guessing but I think the wp_head() function call has been placed in your themes footer instead of the head where it belongs.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cdolan on "Forms hidden after load"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/forms-hidden-after-load#post-257816</link>
			<pubDate>Fri, 17 May 2013 11:25:46 +0000</pubDate>
			<dc:creator>cdolan</dc:creator>
			<guid isPermaLink="false">257816@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've updated to the latest version, and a bit of an interesting error - of my 4 forms loaded onto the page, 3 are being hidden after page load.&#60;/p&#62;
&#60;p&#62;Any idea what could be doing this? I feel like its a javascript/jquery load, but I honestly can't pin-point this one. &#60;/p&#62;
&#60;p&#62;Also, I think the ones that are hidden have some sort of conditional formatting, and the one that is visible is just 'basic'.&#60;/p&#62;
&#60;p&#62;See the page here: &#60;a href=&#34;http://sequoiawaste.com/opportunities/&#34; rel=&#34;nofollow&#34;&#62;http://sequoiawaste.com/opportunities/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
