I'm trying to make a form, everything works until I turn on conditional on. The form just won't display, in preview or on my live site
http://pajamaforest.com/gravityforms-export-2010-12-07.xml
Searching the forums, I found one admin suggest adding the following block of code to my theme's functions.php, tried that and it didn't work (I added it to the very end, just before the ?>
).
wp_enqueue_script("gforms_ui_datepicker", WP_PLUGIN_URL . "/gravityforms/js/jquery-ui/ui.datepicker.js", array("jquery"), "1.3.9", true);
wp_enqueue_script("gforms_datepicker", WP_PLUGIN_URL . "/gravityforms/js/datepicker.js", array("gforms_ui_datepicker"), "1.3.9", true);
wp_enqueue_script("gforms_conditional_logic_lib", WP_PLUGIN_URL . "/gravityforms/js/conditional_logic.js", array("gforms_ui_datepicker"), "1.3.9", true);
wp_enqueue_style("gforms_css", WP_PLUGIN_URL . "/gravityforms/css/forms.css");
The funny thing is I just made another site with tons of conditional logic and everything worked just fine without editing any theme files. For some reason it's giving me problems with even the simplest of conditional logic :\