XF 2.2 How to update all the users to get alerts for their threads?

Claraviolet

Member
Licensed customer
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!
 
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!
 
Back
Top Bottom