Home Forums WordPress Plugins Initial update of users for notifications

Viewing 14 reply threads
  • Author
    Posts
    • #26173
      bert mccallum
      Participant

      Hey Vinny,

      We have a members site that in the buddypress / wordpress profiles has over 8k users. This is a member site and we only want to send to members. In Woocommerce we can determine active members. In buddybress / wordpress we can create roles.

      My question is, can we send the initial global settings to a group / Role ?

      My second questions is, can the notifications be configured to send a digest of only the forums / topics a user has subscribed to or is is all or nothing?

      Bert

    • #26184
      vinny
      Keymaster

      Hi Bert,

      Sorry for the delay in responding.

      My question is, can we send the initial global settings to a group / Role ?

      I’m not entirely sure I understand your question, but I’ll try to answer nevertheless.

      bbpnns allows you to configure roles for notifications. The BuddyPress bridge add-on for bbpnns will allow you to notify all members in the author’s group or all groups that have access to the forum.

      My second questions is, can the notifications be configured to send a digest of only the forums / topics a user has subscribed to or is is all or nothing

      The bbpnns Digest plugin will send digests to whoever should have received notifications given bbpnns’ settings. If you configure bbpnns to *only* send notifications to forum/topic subscribers, then the Digests plugin will send the digests to those users. If you configure roles/groups, it will send to those as well. The Digests plugin only assembles/sends the emails, it doesn’t control to whom – that’s bbpnns’ job.

      I hope this answers your questions.

      Cheers,
      Vinny

    • #26223
      bert mccallum
      Participant

      Hey Vinny, thanks for replying. I am having some problems getting the notifications to send. If a user subscribes to the forum or topic they will get an update when someone adds something but there is no daily notifications going out.

    • #26224
      vinny
      Keymaster

      Hi Bert,

      A few things to check for those users who are getting notifications:

      1. Do they have Digests enabled in their profile screens?
      2. Do you have WP Cron enabled or a real cron job?
      3. Is there any data in your bbpnns_digest_queue table?

      If you haven’t yet, please have a look at https://usestrict.net/bbpress-notify-no-spam-digests-documentation/ for an in-depth understanding of how the Digests add-on works, along with some troubleshooting tips (found under the Testing Mailouts section).

      Let me know if you’re still having trouble after this.

      Cheers,
      Vinny

    • #26232
      bert mccallum
      Participant

      Thanks Vinny. I got the digest working. I do have a follow up with the reply by email plugin. Can that work in conjunction with the digest plugin?

    • #26233
      vinny
      Keymaster

      Hi Bert,

      I’m glad to hear that you got it working. As for the digest working with rbe, just replying to the email isn’t possible because the system wouldn’t know which topic/reply the email was intended for.

      However, I did do some custom work to have the RBE reply-to address added as a tag to the digest. It sounds it’s time to merge that onto the main RBE plugin.

      I’ll work on it and have it released by the end of the week.

      Cheers,
      Vinny

    • #26264
      bert mccallum
      Participant

      Hey Vinny, thanks for the help. Really appreciated

      We have an old school group migrating from listsrv and it has been painful.

      Change the sender of the email to ICEEFT Forum rather than WordPress
      I know there are multiple ways to attempt this but we have a lot of plugins and I am concerned about breaking something. Where do you pick up the sender from?

      Make it quicker to reply to a topic from an email. Clicking on the topic url takes me to a message but there’s no way to reply. Users have to navigate backwards to the beginning of the thread and then scroll down to find the message at the bottom of the thread.
      I looked for documentation on the short codes but couldn’t find this.

    • #26265
      vinny
      Keymaster

      Hi Bert,

      Change the sender of the email to ICEEFT Forum rather than WordPress
      I know there are multiple ways to attempt this but we have a lot of plugins and I am concerned about breaking something. Where do you pick up the sender from?

      The plugin uses the admin email by default (Settings > General). There are several SMTP plugins that let you force the From name and address, so I didn’t make it too obvious on how to change it in bbpnns as well. If you’re not using an SMTP plugin or if yours doesn’t let you configure the sender, you can hook into bbpnns to change it to whatever you want. Put this in your functions.php file, and change the $name and $address variables to whatever you need.

      
      add_filter( 'bbpnns_extra_headers', function($headers, $recipients, $subject, $body){
          
          foreach ( $headers as &$header )
          {
              if ( preg_match( '/^From:/', $header ) )
              {
                  $name    = 'Some Sender';
                  $address = '[email protected]';
                  $header  = sprintf( 'From: "%s" <%s>', $name, $address );
                  break;
              }
          }
          
          return $headers;
          
      }, 10, 4);
      

      Make it quicker to reply to a topic from an email. Clicking on the topic url takes me to a message but there’s no way to reply. Users have to navigate backwards to the beginning of the thread and then scroll down to find the message at the bottom of the thread.

      I think you’re using the wrong tag. You should be using [topic-replyurl] and [reply-replyurl] tags to get to the reply form.

      You can also take a step ahead and let your participants reply by email (and create topics via email) with the Reply by Email add-on. 🙂

      Cheers,
      Vinny

    • #26268
      bert mccallum
      Participant

      Thanks again Vinny. Were you able to get the Reply by email working with the digest?

    • #26270
      vinny
      Keymaster

      Sorry, not yet. I’ll try to have it done this week.

    • #26522
      bert mccallum
      Participant

      Hey Vinny,

      Just checking in on the reply by email. Were you able to get that added?

      We are looking to move our site over to the buddyboss platform which is a fork of buddypress. Do you know if your plugin is compatible?

      Bert

    • #26527
      vinny
      Keymaster

      Not yet. It’s set for the next release, which should be made available before Christmas.

    • #26566
      vinny
      Keymaster

      Hi Bert,

      The not yet/Christmas answer was regarding the RBE addition to Digests. As for this…

      We are looking to move our site over to the buddyboss platform which is a fork of buddypress. Do you know if your plugin is compatible?

      It should work just fine.

      Cheers,
      Vinny

    • #26629
      bert mccallum
      Participant

      Hey Vinny, Were you able to get the Reply by email working with the digest?

    • #26721
      talia shwartz
      Participant

      i would also be glad to get this option – reply by email working with the digest

Viewing 14 reply threads
  • You must be logged in to reply to this topic.