MyBB Community Forums

Full Version: Reset Avatars & Signatures
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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;