Forums
-
- Forum
- Posts
-
- Installation
- 28,416
- Troubleshooting
- 62,414
- Themes
- 10,415
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
untested, in theory:
function bb_tweaks_no_profile_edit($retvalue, $capability, $args) {
if ($capability=="edit_user") {return bb_current_user_can( 'administrate');}
return $retvalue;
}
add_filter('bb_current_user_can', 'bb_tweaks_no_profile_edit',10,3);