@kaab321 I think that the fix proposed by @r-a-y is more elegant and relevant. You should use it instead, if it works for you, of course.
Thank you @r-a-y, I tried it and it works for me 🙂
I’ve seen that it was an autoload problem, but my knowledge about the buddypress core is very limited :/ I preferred modify a plugin than dare to change directly a buddypress file.
I posted a topic on the Buddypress Cover Photo support forum, on wordpress.org. (Same authors as KLEO theme and support forum so easier to access). Bye !
Hello, I had exactly the same problem, with the theme “KLEO” (seventhqueen).
If it can helps someone, the problem was caused by the plugin “Buddypress Cover Photo”. I fixed it by changing the first line in the file /plugins/buddypress-cover-photo/group-cover.php :
if ( class_exists( 'BP_Group_Extension' ) ) :
by
if ( class_exists( 'BP_Group_Extension' ) && bp_is_active('groups') ) :
(It’s my first post on this forum, so I wanted to say that Buddypress is a great plugin, good work guys !)