Disallow profile change for non admins
-
Can I disallow the profile change option for non-admins after they log in? The reason is that although I hide the toolbar from non admins using the following hook as a plugin
function my_function_admin_bar($content) {
return ( current_user_can( ‘administrator’ ) ) ? $content : false;
}
add_filter( ‘show_admin_bar’ , ‘my_function_admin_bar’);But logged in users can still change their profile from Subscribe2 profile change option.
Thanks
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Disallow profile change for non admins’ is closed to new replies.