Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Need help locating the activity-header code


r-a-y
Keymaster

@r-a-y

Apply a filter to bp_get_activity_action (I believe that’s the filter that contains the view/delete links)

This is some test code you can use:

function my_remove_activity_action($content) {
//MANIPULATE $content here
//$content will probably contain the view and remove links
//you'll have to code this yourself

return $content;
}
add_filter('bp_get_activity_action','my_remove_activity_action');

You’ll have to figure out a way to strip

Skip to toolbar