Sim
Well-known member
How do I change this?
Hi wizard, here are the top new and updated threads in the last week
Edit the phrase
whatsnewdigest_email_new_and_updated_threads
How do I change this?
Hi wizard, here are the top new and updated threads in the last week
whatsnewdigest_email_new_and_updated_threads
Not tried this but running DragonByte's 'similar' looking digest.
Couple of feature requests or questions:
1. Does it support image embeds in emails (from posts/threads)?
2. Can you specify the time of the digest? This one is key for improving adoption.
Not tried this but running DragonByte's 'similar' looking digest.
Which addon from DragonByte are you running? I can't find one that DragonByte has published that does anything like this?
The phrase is whatsnewdigest_email_subject 👍This is a brilliant addon! So easy to set up and use. One questions: how do I edit the email subject line?
$xf.visitor.user_id && !$xf.visitor.Option.whatsnewdigest_email
How do I hide the widget when a user subscribers?
I think I answered my own questions:
Code:$xf.visitor.user_id && !$xf.visitor.Option.whatsnewdigest_email
Do I need to find a unique ID or simply add that? If a user has logged in within the last 180 days, ie. they are already subscribed by default, will the subscribe widget show / not show?
$xf.visitor.user_id
part makes the widget only display to members because a guest will have $xf.visitor.user_id == 0
which will fail this test and hide the widget.!$xf.visitor.Option.whatsnewdigest_email
will hide the widget from anyone who has made a selection for receiving the digest emails because only a null value will pass the test and allow the widget to be shown and only those people who have not yet selected an option get a null value.Now I do have a question, how do I change this date:
Send emails only to users active in the last 180 days. Uncheck this option to send to all valid users, regardless of most recent activity (not recommended - could cause an increase in spam complaints).
isValidUser()
and isRecentlyActive()
found in the core XF\Finder\User
class.will this add-on be able to keep a running total of how many users have signed up for the digest?
It would be a cool feature to add.No - there is no display of the user count, you would need to run a database query to find those numbers.
@Sim When someone unsubscribes via the link at the bottom of an email do they have to be logged in? Thanks!
We use essential cookies to make this site work, and optional cookies to enhance your experience.