MyBB Community Forums

Full Version: Mass disable post icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Is there a query to mass disable post icons? I've got about 40 forums on a site I'm working on and it would take me forever to go through and disable every post icon manually.

Thanks.
What do you mean by 'disable'? As in, remove all post icons from posts and threads that have them?
You could run these:
UPDATE `mybb_threads` SET `icon` = '';
UPDATE `mybb_posts` SET `icon` = '';
(2010-08-16, 08:32 AM)Polarbear541 Wrote: [ -> ]You could run these:
UPDATE `mybb_threads` SET `icon` = '';
UPDATE `mybb_posts` SET `icon` = '';

Would that stop people from using them in threads when going to "New thread"?
You'll need to remove {$posticons} from the newreply and newthread templates Smile
Those sql queries will get rid of the existing ones.
Hello,

I did both the above queries and removed {$posticons} from the templates, but I still have the column showing up. Any idea why?

Thanks.