Samantha,
I installed "the Station" theme locally and tested it out. The form worked fine.
I embedded the form in a page, then included that page id in the tabber settings and it displayed the form properly.
One thing I did note is that the styles aren't being loaded automatically because of how the form is being called into the page. To fix that, I manually enqueued the CSS and scripts by placing a short block of script in the themes functions.php file.
//Enqueue Gravity Forms CSS and scripts for use outside the loop
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");
After adding that, all the styles were in place and the form looked and functioned as it should.
screenshot
I'm not sure what you've run into. It may be a conflict with another script or plugin. It's hard to tell without seeing it.
If you still can't get it to work, you can send us an admin login to your site via our contact form and we'll take a look.
Posted 14 years ago on Friday May 28, 2010 |
Permalink