Gravity Forms – Allow Editor Access to Admin Menus
This function opens up access to Gravity forms menus for WordPress users assigned with the Editor role.
function add_grav_forms() {
$role = get_role('editor');
$role->add_cap('gform_full_access');
}
add_action('admin_init','add_grav_forms');

Leave a Reply
Want to join the discussion?Feel free to contribute!