Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • @misslhansen

    Participant

    Thanks. Sorry I did check the known issues file and didn’t see it.

    @misslhansen

    Participant

    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

    activity meta is empty

    @misslhansen

    Participant

    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');

    I also have the plugin edit-flo installed

Viewing 3 replies - 1 through 3 (of 3 total)
Skip to toolbar