Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,842
- How-to & Troubleshooting
- 129,859
- Creating & Extending
- 25,886
- Requests & Feedback
- 9,532
- Third Party Plugins
- 9,828
- Showcase
- 3,316
- Ideas
- 1,402
- Miscellaneous
- 9,177
-
edit the theme file /activity/entry.php and under the activity-meta div – you’ll see the link for comments. you could add the following checks to that section:
bp_get_activity_object_name() == 'groups' //the component name
groups_is_user_member( $bp->loggedin_user->id, bp_get_activity_item_id() ) //if a group then item_id references the group_id
(i didn’t test this – just what i found)