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.

Form Not Showing

  1. KyleVee
    Member

    All of a sudden my form is not showing, well not all of it anyway, I get the progress bar and "next" button but nothing else, it literally worked one minute and not the next, i was only working with some css files at the time which i doubled checked didn't cause the issue, I deactivated all my plugins and tested it in all of wordpress twentyten/eleven/twelve themes and the problem is still there.

    It looks like javascript not loading is the problem, but I can't think of what would cause it to randomly break as there were no significant changes made.

    url is http://www.explosivelistings.com/form

    Thanks

    Posted 11 years ago on Monday February 4, 2013 | Permalink
  2. You're loading at least two versions of jQuery. You only need one, in the head section of the page, and it should be version 1.8.3 for WordPress 3.5.1.

    This one is unnecessary and incorrect (looks like it's coming from a plugin):

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

    This one is correct for WordPress 3.5.1:

    <script type='text/javascript' src='http://www.explosivelistings.com/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script>

    Then you load 1.7.2 again via the theme:

    <script src="http://www.explosivelistings.com/wp-content/themes/Bluelight/js/jquery-1.7.2.js" type="text/javascript"></script>

    Remove the two references to 1.7.2 and make sure your plugins and theme still work, and let WordPress do its job of enqueuing jQuery 1.8.3 and so long as there are no other JavaScript errors on the page, I think you will find that your form works properly.

    Posted 11 years ago on Monday February 4, 2013 | Permalink