<?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 not displaying after adding a new form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-not-displaying-after-adding-a-new-form</link>
		<description>Gravity Support Forums Topic: Form not displaying after adding a new form</description>
		<language>en-US</language>
		<pubDate>Fri, 24 Apr 2026 23:36:40 +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-not-displaying-after-adding-a-new-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Form not displaying after adding a new form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-displaying-after-adding-a-new-form#post-215969</link>
			<pubDate>Fri, 19 Apr 2013 18:03:22 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">215969@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Dale,&#60;/p&#62;
&#60;p&#62;Can you try changing the jQuery version from 1.9.1 to 1.8.3 as there have been issues with 1.9 due to it being a major re-write.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard&#60;br /&#62;
--&#60;br /&#62;
Just another member of the community helping out where I can
&#60;/p&#62;</description>
		</item>
		<item>
			<title>capcomp on "Form not displaying after adding a new form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-displaying-after-adding-a-new-form#post-215904</link>
			<pubDate>Fri, 19 Apr 2013 15:53:48 +0000</pubDate>
			<dc:creator>capcomp</dc:creator>
			<guid isPermaLink="false">215904@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello - I got the online job application to display by adding this to the theme style sheet;&#60;/p&#62;
&#60;p&#62;body #gform_wrapper_1 {display:inline !important;}&#60;br /&#62;
the downside is it broke the conditional logic for three of the fields on that form so I had to remove conditional logic. It appears to be a jquery conflict between the forms. For jquery on the payment form I used the following in an html block in the form;&#60;br /&#62;
&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
$(&#34;#choice_14_1&#34;).click(function() { &#60;/p&#62;
&#60;p&#62;if($(&#34;#choice_14_1&#34;).is(':checked')) {&#60;br /&#62;
$('#input_2_9_1').val($('#input_2_2_1').val());&#60;br /&#62;
$('#input_2_9_2').val($('#input_2_2_2').val());&#60;br /&#62;
$('#input_2_9_3').val($('#input_2_2_3').val());&#60;br /&#62;
$('#input_2_9_4').val($('#input_2_2_4').val());&#60;br /&#62;
$('#input_2_9_5').val($('#input_2_2_5').val());&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62; });&#60;br /&#62;
&#38;lt;/script&#38;gt;&#60;br /&#62;
This code in the functions.php;&#60;br /&#62;
if (!is_admin()) add_action(&#34;wp_enqueue_scripts&#34;, &#34;my_jquery_enqueue&#34;, 11);&#60;br /&#62;
function my_jquery_enqueue() {&#60;br /&#62;
   wp_deregister_script('jquery');&#60;br /&#62;
   wp_register_script('jquery', &#34;http&#34; . ($_SERVER['SERVER_PORT'] == 443 ? &#34;s&#34; : &#34;&#34;) . &#34;://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&#34;, false, null);&#60;br /&#62;
   wp_enqueue_script('jquery');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;and this in the header.php;&#60;br /&#62;
&#38;lt;script src=&#34;//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&#34;&#38;gt;&#38;lt;/script&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>capcomp on "Form not displaying after adding a new form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-displaying-after-adding-a-new-form#post-213302</link>
			<pubDate>Wed, 17 Apr 2013 17:03:30 +0000</pubDate>
			<dc:creator>capcomp</dc:creator>
			<guid isPermaLink="false">213302@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello - We have created two forms for our site and have them linked to two pages;&#60;br /&#62;
&#60;a href=&#34;http://www.wpspaint.com/blog/online-job-application/&#34; rel=&#34;nofollow&#34;&#62;http://www.wpspaint.com/blog/online-job-application/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;https://www.wpspaint.com/blog/online-payments/&#34; rel=&#34;nofollow&#34;&#62;https://www.wpspaint.com/blog/online-payments/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We had the online job application up and running and then added the secure payments form which uses a jquery snippet to auto populate the billing address if the same address box is checked.&#60;br /&#62;
After getting the online payments form up and running the job application form does not display. Works fine in preview mode and I did not see any errors when I looked at it with firebug.&#60;/p&#62;
&#60;p&#62;Dale
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
