Skip to:
Content
Pages
Categories
Search
Top
Bottom

Make Notification of New Replies Auto Checked

  • @jeffvand

    Participant

    Is there a way I can make the “Notify me of follow-up replies via email” box at the bottom of posts auto-checked so Users could uncheck if they don’t want to be notified instead of having to check it to be notified? Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • @jeffvand

    Participant

    I’m still looking at a way to make this happen. Any thoughts or direction?

    @mordauk

    Participant

    Drop this code snippet into a custom plugin (you can use Pluginception to easily create one)

    function pw_bbp_auto_checK_subscribe( $checked, $topic_subscribed  ) {
    
        if( $topic_subscribed == 0 )
            $topic_subscribed = true;
    
        return checked( $topic_subscribed, true, false );
    }
    add_filter( 'bbp_get_form_topic_subscribed', 'pw_bbp_auto_checK_subscribe', 10, 2 );
    

    @starejosel

    Participant

    You might try the plugin: bbPress Email Notifications
    I’m not using it, but I think that I once looked at it, and it does what you want.

    @alain-ronk

    Participant

    Hello !

    Why any visitor can open a topic and write a response, while only REGISTERED users (username + password) will have access to the box for reply notification by mail?

    I would like the mail notification is ok for all users, registered and not registered users.
    To date, no response obtained in any forum, and no plugin found …

    If anyone can help me …

    Best regards
    Alain
    My Website : http://www.modelisme-racer.fr

    @lordspace

    Participant

    Hi all,

    Just packaged Pippin’s code into a WordPress plugin

    https://wordpress.org/extend/plugins/orbisius-bbpress-notify-me-on-follow-up-replies/

    Slavi

    Home

    @janhoos

    Participant

    Is there a way where I can do the opposite? Uncheck the box by default? Like on this forum?

    @makingcircuits

    Participant

    @Pippin Williamson

    Your code works like charm.

    Thank you very much!!

    @makingcircuits

    Participant

    sorry No, it shows only under admin reply box and disappears on readers replies boxes

    @robin-w

    Moderator
Viewing 9 replies - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.
Skip to toolbar