• dookied2

    (@dookied2)


    I recently installed User Role Editor and am really liking it so far!

    I have run into a small issue that I cannot figure out so far…

    I want to give Editors access to view Gravity Form entries on a site and that is all. When I grant them View Entries access, they also get access to the Gravity Forms Help menus, which I don’t want them to have access to. ??

    How can I grant access to view Form Entries without giving them access to the Gravity Form Help menus?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Vladimir Garagulya

    (@shinephp)

    Unfortunately GF selects capability to the “Help” menu item dynamically:

    
    add_submenu_page( $parent_menu['name'], __( 'Help', 'gravityforms' ), __( 'Help', 'gravityforms' ), $has_full_access ? 'gform_full_access' : $min_cap, 'gf_help', array( 'RGForms', 'help_page' ) );
    

    where $min_cap is calculated from the list of capabilities available for current user:

    
    $min_cap         = GFCommon::current_user_can_which( GFCommon::all_caps() );
    

    How to resolve this:
    1) Modify GF source code (should do it again after every plugin update ?? );
    2) Use some admin menu blocking routine, like this one.

Viewing 1 replies (of 1 total)
  • The topic ‘Gravity Form Role Issue’ is closed to new replies.