>>
Site Map
>>
Forums
>>
Themes 6x
Forum module - topics in forum:
Themes 6x - Discussions regarding PHP-Nuke Themes.
Resetting all members preselected Themes
Hi guys,
Is there a way to reset everyone who has changed their theme back to one theme....
i want to delete a couple of standard themes but am worried that if people have them selected they will get errors etc...
cheers
If you can run a sql statement - it would be
UPDATE nuke_users SET theme = 'NewThemeName'
NOTE - THIS WILL RESET ALL USER ACCOUNTS and the theme name must use the exact spelling and capital letters
You could add
UPDATE nuke_users SET theme = 'NewThemeName' WHERE theme = 'OldTheme'
where the old theme is the one you want to delete - this would be safer and only effect the users with that theme selected