Tagged: Buddypress Friends Mention
Hi Shanki,
Welcome to BuddyDev.Please put this code in your bp-custom.php
/** * Only allow suggestions for friends. * * @param $args * * @return mixed */ function buddydev_filter_suggestions_args( $args ) { if ( ! isset( $args['group_id'] ) ) { $args['only_friends'] = true; } return $args; } add_filter( 'bp_after_get_suggestions_parse_args', 'buddydev_filter_suggestions_args' );
That will do it.
Hope that helps.Regards
Brajesh
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.
This topic is: resolved