Claraviolet Member Mar 13, 2023 #1 Well, the users can select the option individually based on their preference but is there a way to update all the users, to receive alerts for their threads? Thanks in advance!
Well, the users can select the option individually based on their preference but is there a way to update all the users, to receive alerts for their threads? Thanks in advance!
P Paul B XenForo moderator Staff member Mar 13, 2023 #2 No, it's something members must do for themselves. Upvote 1 Downvote Solution
Claraviolet Member Mar 13, 2023 #3 Brogan said: No, it's something members must do for themselves. Click to expand... Oh ok. Thanks. Upvote 0 Downvote
Mr Lucky Well-known member Mar 14, 2023 #4 If you feel comfortable running a database query (after backing up!) you could try this: Code: UPDATE xf_user_option SET creation_watch_state = 'watch_email' or Code: UPDATE xf_user_option SET creation_watch_state = 'watch_no_email' Seems to work on my test forum but at your own risk obviously! Upvote 0 Downvote
If you feel comfortable running a database query (after backing up!) you could try this: Code: UPDATE xf_user_option SET creation_watch_state = 'watch_email' or Code: UPDATE xf_user_option SET creation_watch_state = 'watch_no_email' Seems to work on my test forum but at your own risk obviously!