Hi there,
From what I can tell, that’s checking against the name of the javascript file rather than the plugin. These are the file names enqueued by BuddyPress Activity Plus:
bpfb_group_documents
bpfb_interface
Try replacing “contact-form-7” with either of those.
Hi Robin,
I’ve checked MarketPress, and it doesn’t directly hook into bbPress anywhere. Instead it only hooks the standard WordPress profile.
It looks like bbPress just piggyback’s off that action, (see bbPress functions.php line 959) which is why those fields are showing up.
Doing something like this should remove it.
global $mp;
remove_action('show_user_profile',array($mp,'user_profile_fields'));
remove_action('edit_user_profile',array($mp,'user_profile_fields'));