AI Search
Classic Search
Notifications
Clear all
2 Replies
Sep 24, 2018 5:22 pm
Hi Cotty,
I'm sorry, but there is no any option for this purpose. You need to use the code like this one (put the code in current active theme functions.php file):
function mycustom_wpforo_menu_array_filter($menu){
if( WPF()->current_user_groupid == 8 ){
unset( $menu['wpforo-profile-account'] );
}
unset( $menu['wpforo-logout'] );
return $menu;
}
add_filter('wpforo_menu_array_filter', 'mycustom_wpforo_menu_array_filter');
Sep 25, 2018 12:01 am
Thanks for the reply Sofy, its very much appreciated!
Hopefully, you'll consider adding this customisation feature at some point.
Thanks Again
