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.

Add a submenu page to Gravity Forms admin

  1. markpixion
    Member

    I want to add a submenu page to Gravity Forms admin.
    Tried to do it like this, but it's not working..

    add_action('admin_menu', 'register_my_custom_submenu_page');
    function register_my_custom_submenu_page() {
    	add_submenu_page( 'gf_edit_forms', 'My Custom Submenu Page', 'My Custom Submenu Page', 'manage_options', 'my-custom-submenu-page', 'my_custom_submenu_page_callback' );
    }

    Which action should I use in the add_submenu_page function ?

    Posted 11 years ago on Monday February 11, 2013 | Permalink
  2. You can use the gform_addon_navigation filter: http://www.gravityhelp.com/documentation/page/Gform_addon_navigation

    Posted 11 years ago on Thursday February 14, 2013 | Permalink