BuddyDev

Disable BuddyPress Components Conditionally

Do you want to disable some of the BuddyPress components based on user role or some other conditions? if you do, BuddyPress provides us with a filter hook "bp_is_active" that you  can use to conditionally disable the components. It is not even necessary to filter based on role, you can filter based on anything you …

Disabling oEmbed support in BuddyPress Activity

If you want to disable oEmbed(e.g youtube videos, vimeo videos etc embedding) support in BuddyPress activity, you can simply put the following code in your bp-custom.php and it will do that. add_filter( 'bp_use_oembed_in_activity', '__return_false' ); Yup! That's all you need to disable oEmbed support in the BuddyPress activity. Bonus:- Disable clickable links in activity. Don't want …

Introducing BuddyPress Featured Members Plugin

Introducing BuddyPress Featured Members Plugin

BuddyPress featured Members plugin helps the site admins create/display list of featured members in various ways. Features:- Allows Site admin to mark a user as featured/remove from the list of featured members Featured Members can be displayed using Widget Featured members can be displayed using the shortcode Featured Members will be listed in the members directory …