Removing the ”view” link from the activity stream
-
@pcwriter et al:
A few people have asked about removing the “view” link in the activity stream, and those pesky, good for nothing permalink pages that it leads to.
This little snippet in your functions.php will remove the link from your activity stream output:
`
// removes the view button
function no_permalink($content)
{
return “”;
}add_filter(‘bp_activity_permalink’, ‘no_permalink’);
`
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Removing the ”view” link from the activity stream’ is closed to new replies.