Reply To: Hide Setting and Announcement Button for Users Home › Forums › Front End PM PRO › Hide Setting and Announcement Button for Users › Reply To: Hide Setting and Announcement Button for Users January 4, 2019 at 7:10 pm #20386 Shamim HasanKeymaster Add following code in your theme’s (child theme’s if you are using) functions.php add_filter('fep_menu_buttons', function( $menu ){ unset( $menu['settings'], $menu['announcements'] ); return $menu; }, 99);