I would like to run a GF Form in a WP Widget (Text),
something like this:
<div class="login-sec">
[gravityform id="5"]
</div>
this is not working, sure ;)
But how to launch the script?
I would like to run a GF Form in a WP Widget (Text),
something like this:
<div class="login-sec">
[gravityform id="5"]
</div>
this is not working, sure ;)
But how to launch the script?
Is there a reason you aren't using the Gravity Forms Widget?
custom made theme
hard-coded 'boxes' working as text widget
no way to use a normal or a GF Widget ;(
Add this to your functions.php. Then Shortcodes should work in Widgets:
add_filter('widget_text', 'do_shortcode');
Here is one reference for that suggestion from kyle.
http://englishmike.net/2008/07/07/wordpress-quick-tips-3adding-a-shortcode-to-a-sidebar-widget/
Thanks for the tip kyle.