PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

I would like to run a GF Form in a WP Widget (Text),

  1. 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?

    Posted 12 years ago on Thursday January 5, 2012 | Permalink
  2. Is there a reason you aren't using the Gravity Forms Widget?

    Posted 12 years ago on Thursday January 5, 2012 | Permalink
  3. custom made theme
    hard-coded 'boxes' working as text widget
    no way to use a normal or a GF Widget ;(

    Posted 12 years ago on Thursday January 5, 2012 | Permalink
  4. kyle
    Member

    Add this to your functions.php. Then Shortcodes should work in Widgets:

    add_filter('widget_text', 'do_shortcode');
    Posted 12 years ago on Thursday January 5, 2012 | Permalink
  5. 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.

    Posted 12 years ago on Friday January 6, 2012 | Permalink