Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,045
- How-to & Troubleshooting
- 129,739
- Creating & Extending
- 25,802
- Requests & Feedback
- 9,506
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,181
-
Michael Sumner said 11 hours, 41 minutes ago:
Open the file mentioned, and replace this:
$group_ids = $this->get_group_ids( $user_id );
with this:
$group_ids = BP_Groups_Member::get_group_ids( $user_id );
And right below that, replace this:
foreach ( $group_ids->groups as $group_id ) {
with this:
foreach ( $group_ids as $group_id ) {
That fixed the issue for me.