Hey @johnjamesjacoby,
@Alex is right in my opinion.
Admin’s messages or notifications within the member’s profile and not the member’s messages, it is pretty weird. Admin should have control over this.
Could you post just snippet how to modify it?
I found this on the forum, but it doesn’t not work:
function bp_admin_is_my_profile( $my_profile ){
global $bp;
if( ( $bp->current_component == BP_MESSAGES_SLUG ) && current_user_can(‘manage_options’) ) return true;
else return $my_profile;
}
add_filter(‘bp_is_my_profile’, ‘bp_admin_is_my_profile’, 1);
Thank you.