you can use fep_admin_cap filter hook to give any role admin access. use with caution. this will give that role user all admin right for this plugin.
Thanks Shamim. I’ll give it a try. I really like the plugin so far, and if I can get this to work, I will be upgrading to pro.
Thanks again!
Hi Shamim,
I tried that and it allowed a user with the permission I passed in to see the “Extensions” and “Settings”, but they still can’t see “All Messages”, “All Announcements” and “New Announcements”
Is there any role I can give a user to see those three things in the admin area?
Thanks.
add following code in your theme’s (child theme’s if any) functions.php. Then access your admin area. You will see those links. Then remove this code.
fep_add_caps_to_roles( array( 'administrator' ) );
Change administrator with your role which your want to give access. it is an array, you can add more than one role.
Thank you! That is exactly what I was looking for.