Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] Remove bbPress notifications sent to Buddypress

  • @larnoult

    Participant

    Hey,

    I can’t find any option to cancel bbPress sending a notification to the buddypress profile of a user that has subscribed or simply answered to a topic.
    I need to cancel these bbpress notifications, any tips?

    Thx!!

    Cheers,

Viewing 1 replies (of 1 total)
  • @shanebp

    Moderator

    afaik, there is no option.
    Try this in your theme/functions.php

    function larnoult_remove_bbpress_notifications() {
        remove_action( 'bbp_new_reply', 'bbp_buddypress_add_notification', 10, 7 );
    }
    add_action( 'bbp_loaded', 'larnoult_remove_bbpress_notifications', 99  );

    You may need to tweak the priority settings.
    https://codex.wordpress.org/Function_Reference/remove_action

Viewing 1 replies (of 1 total)
  • The topic ‘[Resolved] Remove bbPress notifications sent to Buddypress’ is closed to new replies.
Skip to toolbar