Currently Gravity Forms does not have a built in widget but it is coming in the 1.3.14 version of Gravity Forms. We will be releasing a beta of 1.3.14 sometime in the next 1-2 weeks.
Until then there is a 3rd party widget available from Joost de Valk at Yoast.com that acts as a Gravity Forms widget and allows you to place a Gravity Form in your sidebar. You can download it here:
http://yoast.com/gravity-forms-widget-update/#gf-widget
If you use Joost's widget you will need to add this code to your themes function.php file to enqueue the necessary JS and CSS which his widget doesn't do automatically:
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");
Posted 14 years ago on Tuesday July 27, 2010 |
Permalink