I use messenger and announcement at lot and am really happy with that. All members can, by themselves, add themselves into any of the grpups I have made. On the top of that list in the “Settings” there are also those 3 options which the last is the possibility to avoid to get any e-mails when an announcement is sendt out.
I want to hide this option for members (only the one for announcement). The admins need to be sure that all announcement is also send by e-mail to members, not only inside Front End PM.
I found the code that disable Settings for all, but I want the code to be visible for admin. Please help.
(the code I found was: )
add_filter( ‘fep_menu_buttons’, function( $menu ){
unset( $menu[‘settings’], $menu[‘announcements’] );
return $menu;
}, 99);