Plugin: BuddyPress Activity Stream Bar

Join this plugin group to follow comments, support topics and reviews.

Suggestion: Exclude admin from stream (2 posts)

Started 1 year, 3 months ago by: intimez

  • Profile picture of intimez intimez said 1 year, 3 months ago:

    Anyone know how I can exclude admin from the stream?

  • Profile picture of @mercime @mercime said 1 year, 3 months ago:

    @intimez – haven’t tried it with this plugin, check if code from @sbrajesh from this page will work for what you need:

    add_action("plugins_loaded","bpdev_init_sm_mode");
    function bpdev_init_sm_mode(){
    if(is_site_admin())
    remove_action("wp_head","bp_core_record_activity");//id SM is on, remove the record activity hook
    }