Home › Forums › Front End PM PRO › Restrict which rolls show up on front end for announcement. › Reply To: Restrict which rolls show up on front end for announcement.
May 25, 2019 at 5:59 pm
#25048
shamim
Keymaster
You can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_to_roles_to_create_announcement', function( $roles ){
unset( $roles['administrator'] ); //set here which role you do not want to show
return $roles;
});