greenchicken Active member Oct 29, 2012 #1 Want to reset it for my whole forum, anyone know the query? TIA
Chris D XenForo developer Staff member Oct 29, 2012 #2 To set it for all existing users, run this query: Code: UPDATE xf_user_option SET default_watch_state = 'watch_email' To set that as the default for new user registrtions... Let me check EDIT: Yep: Admin CP > Options > User Registration Set "Watch threads when creating or replying" to "Yes, with email" Upvote 0 Downvote
To set it for all existing users, run this query: Code: UPDATE xf_user_option SET default_watch_state = 'watch_email' To set that as the default for new user registrtions... Let me check EDIT: Yep: Admin CP > Options > User Registration Set "Watch threads when creating or replying" to "Yes, with email"
greenchicken Active member Oct 29, 2012 #3 Thanks so UPDATE xf_user_option SET default_watch_state = 'watch_email' will reset all users to receive emails by default? Upvote 0 Downvote
Thanks so UPDATE xf_user_option SET default_watch_state = 'watch_email' will reset all users to receive emails by default?
Chris D XenForo developer Staff member Oct 29, 2012 #4 Yes. And if you set default_watch_state to 'watch_no_email' that will set it to watch all threads but without emails. Upvote 0 Downvote
Yes. And if you set default_watch_state to 'watch_no_email' that will set it to watch all threads but without emails.