I recently found that WP AdCenter interferes with my forms displaying. I was wondering if you could lend a hand with this issue. I have also contacted AdCenter about the issue.
I recently found that WP AdCenter interferes with my forms displaying. I was wondering if you could lend a hand with this issue. I have also contacted AdCenter about the issue.
Can you post a link to a page on your site where a form should be visible? We might be able to spot the error there.
http://mycg.boundlessdata.net/contact-us/
its there, just not displaying, if i turn off adcenter its ok, there is a display:none that is causing it but im not a css expert, i cant figure it out. Thanks for the support.
Looks like WP Adcenter is including their own version of jQuery:
[php]
<script type="text/javascript" src="http://mycg.boundlessdata.net/wp-content/plugins/wp-adcenter/js/jquery-1.6.4.min.js" /></script>
That is conflicting with another version of jQuery loaded in the page:
[php]
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js?ver=1.7.1'></script>
Also, you're using version 3.3.2 of WordPress, which is not the latest, and the jQuery version in WordPress is now 1.8.
You need just one copy of jQuery included and it need to be the latest which is included with your WordPress version. At that point, your form will display. The CSS display:none is added to forms with conditional logic, then jQuery is used to unhide the form. When jQuery does not work, the form cannot be shown.