MyBB Community Forums

Full Version: Auto Signature when sign up?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

How do I automatically set the "default signature" for every new signup? (and maybe even current members?)

Thanks!
And then for current members, run this query:

UPDATE `mybb_users` SET `signature` = 'whatever you want' WHERE `signature` = '';

That will do it for only people who currently have no signature.