I have been unable to embed a new form since upgrading to GF 1.5. When trying to view the form live, I get the page to load, but no form. IE gives the error "Message: Object doesn't support this property or method", FF is just the page without the form.
I use the following in my theme template:
<?php gravity_form(5, false, false, false, '', true); ?>
As well, the following in my function.php theme file:
if(!is_admin()) {
wp_enqueue_script("gforms_ui_datepicker", WP_PLUGIN_URL . "/gravityforms/js/jquery-ui/ui.datepicker.js", array("jquery"), "1.4", true);
wp_enqueue_script("gforms_datepicker", WP_PLUGIN_URL . "/gravityforms/js/datepicker.js", array("gforms_ui_datepicker"), "1.4", true);
wp_enqueue_script("gforms_conditional_logic_lib", WP_PLUGIN_URL . "/gravityforms/js/conditional_logic.js", array("gforms_ui_datepicker"), "1.4", true);
wp_enqueue_style("gforms_css", WP_PLUGIN_URL . "/gravityforms/css/forms.css");
}
The form shows in the admin preview, no problem. I can also swap out my form id in the theme file and the old forms (made before the upgrade) work.
Any help would be appreciated...thanks!