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.

Conditional Logic forms not showing

  1. Hello,

    My forms with conditional logic aren't loading. After searching & reading through the forum for similar issues, I believe it's a problem with the jQuery. I've turned the plugins & theme on/off and they don't effect the forms one way or another. Can you help? I'm not a coder, but when I look at the source code of the page it appears that there are multiple references to jQuery. It looks like a mess! Any help you can provide would be appreciated.
    The page is at http://www.arvertise.net/double-action-pack/

    Thanks!
    Susan

    Posted 11 years ago on Monday January 21, 2013 | Permalink
  2. Richard Vav
    Administrator

    Hi Susan,

    It looks like your theme is loading a extremely old version of jquery, version 1.4.2, jquery recently released version 1.9 but you are better letting wordpress load the version that comes packaged with it which I think is 1.8.3. As a side note you are also using jquery ui version 1.8 which requires a minimum jquery version of 1.6 to function correctly.
    <script type='text/javascript' src='http://www.arvertise.net/wp-content/themes/essence/scripts/jquery-latest.js?ver=3.5'></script>
    If you remove the above call to jquery, that is being added by your theme and let WordPress enqueue jquery you can then check if your form displays properly.

    Posted 11 years ago on Monday January 21, 2013 | Permalink
  3. Thanks for your help; this makes sense. My next question is, where do I change this info? I've been digging through code files all morning & can't find the file.

    Thanks again!

    Posted 11 years ago on Monday January 21, 2013 | Permalink
  4. Richard Vav
    Administrator

    jquery is normally included in either header.php between the opening <head> and <?php wp_head(); ?> or in the themes functions.php file

    Posted 11 years ago on Tuesday January 22, 2013 | Permalink