MyBB Community Forums

Full Version: Reverting all the templates
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've an 1.6 forum with a self-modified default theme. I upgraded to 1.8.8 and ofcourse the theme is broken. I want to use the default 1.8.8 theme. Is there any way to massive revert all the templates? 1 by 1 is a pain...
DELETE FROM mybb_templates WHERE sid > 1;

Should to it. Back up the table first though.
The problem is that I directly modified the templates from here:
[Image: iMQQRGr.png]

I've tried and it didn't work.
Sorry, try this:

DELETE FROM mybb_templates WHERE sid >= 1;
It worked like a charm! Thanks Matt.