Best way to allow the editors role (or other role) to access, edit, create, etc. forms?

What is the best way to allow the editors role (or other role) to “full access” (edit, create, etc.) forms as admin role?

I have seen:

but I don’t see one that gives “full access” as admin role.

thanks

Hi Suki. If you want the editor role to have access to everything in Gravity Forms, you can use a role manager plugin like Members or User Role Editor and give them all the individual Gravity Forms and Gravity Forms Add-On capabilities. There is no one role to give them that grants all that.

Thanks Chris.

I have found this code;

/* make gravity forms available to Editor role */
function add_gf_cap()
{
    $role = get_role( 'editor' );
    $role->add_cap( 'gform_full_access' );
}
 add_action( 'admin_init', 'add_gf_cap' );

What do think? betther than manage individual Gravity Forms and Gravity Forms Add-On capabilities?

1 Like

If that works for you, that is a good solution. If you run into any problems, please let us know.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.