MyBB Community Forums

Full Version: Auto add signatures to staff members
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I have promotion forum and one of the services I offer is "signature advertising" for forum cash. What i want to know is there way to to auto add same signature to all staff team instead of copying and pasting to each one?
Run this query:
UPDATE mybb_users SET signature = 'New sig here... Remember to escape any characters' WHERE usergroup IN(3,4,6)
Change 3,4,6 to a comma separated list of IDs of your staff groups.