Re: BuddyPress-Links 0.4.x Releases and Support
Hey, just a reminder here that not everyone uses the BP groups feature. So your plugin breaks if it’s disabled. You need to at least modify buddypress-link.php (0.4.1) at around line 162 to something like this:
if (class_exists('BP_Group_Extension')) {
require_once 'bp-links-groupext.php';
}
Note that I didn’t check the entire plugin for other possible breakage points. So you might want to do that.