Re: Disable Activity Stream for Profiles?
Hi,
The private updates on group should not be visible to anyone other than the profile owner. It means something is wrong, you should check other plugins.
btw, yes, you can remove the activity section from profile. put the following code in your theme’s functions.php
`
global $bp;
bp_core_remove_nav_item($bp->activity->id);
`
But this will make the profile inaccessible, as activity is set as the default profile component. so you may want to put the following code in bp-custom.php
`
define(“BP_DEFAULT_COMPONENT”, “profile”);
`
hope that helps.