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 Displaying

  1. Form was working fine but now is not displaying

    http://ezcruise.us.cloudlogin.co/work_listing/book-now/

    Posted 11 years ago on Wednesday February 13, 2013 | Permalink
  2. It looks like you have some JavaScript errors on the page. Screenshot

    When you enable conditional logic and you have JS errors on your page - the form will be hidden because your browser stops executing JS as soon as it hits an error, thus the forms JS never finishes executing to show properly.

    You'll want to run through a theme/plugin conflict check to find the culprit:
    http://www.gravityhelp.com/documentation/page/Testing_for_a_Theme/Plugin_Conflict

    Posted 11 years ago on Wednesday February 13, 2013 | Permalink
  3. I was going to say it is only when I have conditional logic turned on.
    As soon as I turn it off everything works fine.
    The theme says it is compatible with your plugin so I need more help...

    Posted 11 years ago on Wednesday February 13, 2013 | Permalink
  4. It might not be the theme, it could be a plugin. You'll need to run through those instructions to find out what it is.

    Posted 11 years ago on Wednesday February 13, 2013 | Permalink
  5. Rob

    I did run through everything and so far I have not had any luck.

    If I provide a login can you figure it out?

    Posted 11 years ago on Wednesday February 13, 2013 | Permalink
  6. I can see what I can do. Add back your conditional logic to the form. Since you are a developer license holder, just fill out this form: http://www.gravityhelp.com/priority-support/

    In that form submission, include a WP Admin login and we'll see what we can find.

    Posted 11 years ago on Wednesday February 13, 2013 | Permalink
  7. Looks like your theme is including a super-old version of jQuery in the footer, in addition to the proper 1.8.3 version which is being enqueued by WordPress. See this in the source of the page:

    <script type="text/javascript" src="http://ezcruise.us.cloudlogin.co/wp-content/themes/Appointment/js/jquery-1.4.4.js"></script>

    If you get rid of that call to jQuery and so long as there are no other JavaScript errors on the page, your form with conditional logic will work fine.

    If you remove that call to jQuery in the the theme, be sure all of the theme functionality continues to work. It's possible that the theme relies on something specific in the old jQuery, and by removing it, something might stop working. Please test thoroughly after removing this extra, old version of jQuery.

    Posted 11 years ago on Thursday February 14, 2013 | Permalink