Conditional logic uses Javascript to show and hide the form if it is present. If the form doesn't display at all then it could be one of the issues below.
1) Your theme template is missing function called. Specifically the wp_head() function call in the header.php and/or the wp_footer() function call in the footer.php file. These are required for plugins to be able to insert code in the head and foot. Check your theme to make sure they are there.
2) Your theme has a Javascript error. If a Javascript error exists on the page, the conditional logic can not execute. Use something like Firebug for FireFox to make sure you don't have any javascript errors present.
3) A theme or plugin conflicts. Code in your theme or another plugin could be causing a conflict with the conditional logic javascript. You can test for a theme conflict by activating the default TwentyTen theme and see if conditional logic works. If it does, then something in your theme is causing the problem (could be #1 above). If it doesn't then it is a plugin conflict. You test for plugin conflicts by deactivating ALL other plugins and only activating Gravity Forms, if the form works fine then you would activate each of your other plugins one by one and test the form after each one until you determine which one is causing the issue.
The form isn't displaying because something on your site is interfering with the conditional logic javascript.
Posted 14 years ago on Friday November 5, 2010 |
Permalink