MyBB Community Forums

Full Version: Change theme for all old users?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I made a new theme and set the theme to default. How can i change that old users have this theme too?
Ok, i already found it: SQL command:
UPDATE mybb_users SET style = 'mybb_theme tid';
example:
UPDATE mybb_users SET style = '2';
Just use UPDATE mybb_users SET style=0;
So if you change the theme again the users will have that then aswell.
To prevent users from getting changed if they have selected an own theme you should do:
UPDATE mybb_users SET style=0 WHERE style=2; for example.
Hmm..I can make a plugin mod for this now that I know how to make admincp mods.
Hey, Labrocca! Did you ever make this plugin? Big Grin