Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created January 9, 2019 22:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/d9b168cf5fe2ad42acea5e65d45a26e2 to your computer and use it in GitHub Desktop.
Save KaineLabs/d9b168cf5fe2ad42acea5e65d45a26e2 to your computer and use it in GitHub Desktop.
Disable Follow Notification.
<?php
/**
* Disable Follow Notification.
*/
function yzc_disable_follow_notification() {
remove_action( 'bp_follow_start_following', 'bp_follow_notifications_add_on_follow' );
}
add_action( 'bp_follow_start_following', 'yzc_disable_follow_notification', 9 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment