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. I just created a new form and posted it to this page: http://www.piklawgroup.com/business-entities/

    it's not showing. If I add a previous form to this page, that form shows. Please assist with why my new form id=3 Name=New Entity isn't showing.

    Thanks!

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  2. so I've discovered that it is the conditional logic that prevents it from showing. Any ideas on what I can do to get this form to show while retaining conditional logic?

    Thanks in advance

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  3. Richard Vav
    Administrator

    When I try to view your page I get a HTTP Error 500 (Internal Server Error)

    What version of jQuery are you loading and where is it being loaded, in the header or in the footer? Are there any JavaScript errors being reported by the web browser (Ctrl + Shift + J in Chrome)
    Have you tried testing for a plugin/theme conflict http://www.gravityhelp.com/documentation/page/Testing_for_a_Theme/Plugin_Conflict

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  4. Yes, sorry I was trying to update my footer by adding "<? php wp_footer(); ?>" in my custom_functions.php file (I don't see a footer.php file) and I messed it up. Should be up and running now.

    I have no idea how to determine what version of JQuery I'm running. Please advise.
    No, I have not tested for plugin or theme conflict just yet
    I opened the javascript console and got the following error:

    "Uncaught TypeError: Cannot set property 'className' of undefined ddsmoothmenu.js:42
    ddsmoothmenu.buildmenu ddsmoothmenu.js:42
    (anonymous function) ddsmoothmenu.js:121
    (anonymous function) jquery.min.js:19
    o.extend.each jquery.min.js:12
    o.extend.ready jquery.min.js:19
    (anonymous function) jquery.min.js:19"

    Any ideas?

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  5. You have multiple old copies of jQuery being loaded in your page, in addition to the proper 1.8.3 version of the library. See these lines in the source of your page:

    1938: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    
    1926: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    
    1916: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    
    47: (this one is correct) <script type='text/javascript' src='http://www.piklawgroup.com/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script>

    Get rid of the old libraries and multiple copies and check your page again. If there are no other JavaScript errors on the page, the form with conditional logic should work correctly.

    There is also a bunch of improperly nested tags and invalid HTML. You may have problems in various browsers with the invalid markup.

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  6. Thanks. I have no idea how to eliminate old jquery libraries. I eliminated the 1.3.2 lines from my custom_functions.php file. I can't find the 1.4 instance. Any assistance would be greatly appreciated.

    thanks

    Posted 11 years ago on Sunday March 24, 2013 | Permalink
  7. You will need to find out what in the theme is adding that, or which plugin is. You can use the troubleshooting steps found here http://rkt.gs/testing

    Posted 11 years ago on Sunday March 24, 2013 | Permalink