-
Hugo Ashmore replied to the topic Members Directory Page Broken After Update in the forum How-to & Troubleshooting 9 years, 5 months ago
@jturet @augustomurriit We have a patch up on the ticket and we’ll be running tests on it a bit later to verify it corrects the issue.
-
Henry Wright replied to the topic BP Group Hierarchy Debug Output in the forum How-to & Troubleshooting 9 years, 7 months ago
Hi @jturet
The debug notice is telling you there’s a non-static method called
get_by_parent()
which belongs to classBP_Groups_Hierarchy
. Somewhere in your site, the method is being called statically like thisBP_Groups_Hierarchy::get_by_parent()
. You can’t do that in PHP as only static methods can be called in this way.Looking at the debug…[Read more]
-
Henry Wright replied to the topic BP Group Hierarchy Debug Output in the forum How-to & Troubleshooting 9 years, 7 months ago
Hi @jturet
The debug notice is telling you there’s a non-static method called
get_by_parent()
which belongs to classBP_Groups_Hierarchy
. Somewhere in your site, the method is being called statically like thisBP_Groups_Hierarchy::get_by_parent()
. You can’t do that in PHP as only static methods can be called in this way. -
Henry Wright replied to the topic Debug output on Profile Page in the forum How-to & Troubleshooting 9 years, 7 months ago
Hi @jturet
There’s likely a plugin, theme or custom code snippet you have installed still using the deprecated function
bp_core_delete_notifications_by_type()
. The notice is telling you to usebp_notifications_delete_notifications_by_type()
instead.
@jturet
Active 8 years, 2 months ago