PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

WP AdCenter Kills Forms

  1. 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.

    Posted 11 years ago on Friday September 14, 2012 | Permalink
  2. 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.

    Posted 11 years ago on Friday September 14, 2012 | Permalink
  3. 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.

    Posted 11 years ago on Friday September 14, 2012 | Permalink
  4. 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.

    Posted 11 years ago on Friday September 14, 2012 | Permalink