-
Michael Sumner posted on the forum topic Time Offset still present in BP 1.2.6 in the group How-To and Troubleshooting: 13 years, 11 months ago
The link to the patch isn’t working for me. How do I fix this issue? It’s a problem in my activity stream as well. Thanks.
-
Michael Sumner posted on the forum topic problem with delete a user from Super Admin Menu of WP3.0 with BP1.2.5 in the group How-To and Troubleshooting: 14 years, 4 months ago
I just replied to a similar topic with how to fix it:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/fatal-error-when-trying-to-delete-user/ -
Michael Sumner posted on the forum topic Fatal Error when trying to Delete User in the group How-To and Troubleshooting: 14 years, 4 months 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.
-
Michael Sumner joined the group How-To and Troubleshooting 14 years, 4 months ago
@dnmedia
Not recently active