Is there a way to reset the avatars and signatures of every user on my forum? I'm looking to reset them, not force a specified one. Thank you!
Run thss SQL query:
UPDATE mybb_users SET avatar='', signature=''
Why thank you.
How about removing all thread and forum subscriptions? Is there a query for that?
DELETE FROM `mybb_threadsubscriptions`
Is there a query to set everyone's Default Thread Subscription Mode to Do not subscribe?
UPDATE `mybb_users`
SET `subscriptionmethod` = 0;