Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,692
- How-to & Troubleshooting
- 128,232
- Creating & Extending
- 25,679
- Requests & Feedback
- 9,405
- Third Party Plugins
- 9,754
- Showcase
- 3,321
- Ideas
- 1,349
- Miscellaneous
- 8,879
-
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.
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS