Reply To: Hide Announcement Box for Users


Home Forums Front End PM PRO Hide Announcement Box for Users Reply To: Hide Announcement Box for Users

#11683
Shamim Hasan
Keymaster

add following code in your theme’s (child theme’s if any) functions.php

add_filter('fep_menu_buttons', function( $menu ){
	unset( $menu['announcements'], $menu['settings'] );
	return $menu;
}, 99);