BuddyBoss Home – Web Support Forums General Requests and Feedback Feature Request: Disabling certain automatic updates in activity stream Re: Feature Request: Disabling certain automatic updates in activity stream

#9657

Alyssa
Participant
@alyssa-buddyboss

@dpayne2 here is a solution to block certain types of wall notices GLOBALLY:

One simple solution is just to hide these notices via CSS. Luckily different types of notices have their own CSS classes. If you view-source the Wall you will see them all.

Ex: to hide a notice that someone joined a group you could add this to custom.css or your child them:

ul.activity-list li.joined_group {
display: none;
}

Or, you can hide all of the “mini” activity items by hiding the mini class. That will cover most of the ones he doesn’t like. Like this:

ul.activity-list li.mini {
display: none;
}