Home › Forums › WordPress Plugins › Initial update of users for notifications
- This topic has 14 replies, 3 voices, and was last updated 3 years, 7 months ago by talia shwartz.
-
AuthorPosts
-
-
September 8, 2020 at 8:30 am #26173bert mccallumParticipant
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
-
September 8, 2020 at 8:37 am #26184vinnyKeymaster
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 -
September 14, 2020 at 5:31 pm #26223bert mccallumParticipant
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.
-
September 14, 2020 at 7:22 pm #26224vinnyKeymaster
Hi Bert,
A few things to check for those users who are getting notifications:
- Do they have Digests enabled in their profile screens?
- Do you have WP Cron enabled or a real cron job?
- 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 -
September 16, 2020 at 12:26 pm #26232bert mccallumParticipant
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?
-
September 16, 2020 at 3:01 pm #26233vinnyKeymaster
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 -
September 27, 2020 at 10:53 am #26264bert mccallumParticipant
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. -
September 27, 2020 at 9:53 pm #26265vinnyKeymaster
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 -
September 28, 2020 at 8:33 am #26268bert mccallumParticipant
Thanks again Vinny. Were you able to get the Reply by email working with the digest?
-
September 28, 2020 at 11:08 am #26270vinnyKeymaster
Sorry, not yet. I’ll try to have it done this week.
-
December 16, 2020 at 5:32 pm #26522bert mccallumParticipant
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
-
December 17, 2020 at 8:28 am #26527vinnyKeymaster
Not yet. It’s set for the next release, which should be made available before Christmas.
-
December 21, 2020 at 5:40 am #26566vinnyKeymaster
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 -
January 13, 2021 at 1:40 pm #26629bert mccallumParticipant
Hey Vinny, Were you able to get the Reply by email working with the digest?
-
February 16, 2021 at 10:27 am #26721talia shwartzParticipant
i would also be glad to get this option – reply by email working with the digest
-
-
AuthorPosts
- You must be logged in to reply to this topic.