Another unique thing about the setup of this site is that the posts are created using gravity forms. They are set as drafts, then we log in, review them, give them a custom status using edit flow which then pushes them through to a ‘published’ status.
The activity table has nothing besides members last activity
I have the following function relating to the activity stream in my themes function file:
//silent mode for site admins
// Code for: Don’t record activity by the site admins or show them as recently active
function my_admin_stealth_mode(){
if ( is_super_admin() ) {
global $bp;
remove_action('wp_head','bp_core_record_activity');
delete_user_meta($bp->loggedin_user->id, ’last_activity’);
}
}
add_action('init','my_admin_stealth_mode');