Reply To: Restrict which rolls show up on front end for announcement.


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.

#25048
Shamim Hasan
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;
});