Tagged: Mention, mentions, Notifications
Hi Ekiz,
Please put this code in your bp-custom.phpadd_filter( 'bp_activity_do_mentions', '__return_false' );
It will disable mentioning from activity.
Regards
BrajeshHi,
You can remove the earlier snippet and use the following in your bp-custom.php/** * Stop local mention notification. */ function budyddev_disable_local_mention_notification() { remove_action( 'bp_activity_sent_mention_email', 'bp_activity_at_mention_add_notification', 10, 5 ); } add_action( 'bp_include', 'budyddev_disable_local_mention_notification' );
That will stop future local notifications.
Regards
Brajesh
Viewing 6 posts - 1 through 6 (of 6 total)
The topic ‘ [Resolved] How to turn off mentions notifications?’ is closed to new replies.
This topic is: resolved