MyBB Community Forums

Full Version: how to remove post icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi how to remove post icons.

using mysql query, how will delete all post icons.

and When I remove the post icon table in the theme, is shifting to the left.
You can run these queries in phpMyAdmin to clear all the existing thread and post icons.

UPDATE `mybb_threads` SET `icon` = '0'
UPDATE `mybb_posts` SET `icon` = '0'

You just need to remove the following from the newthread and newreply templates:
{$posticons}

That shouldn't shift anything to the left.

There are many other templates that need changing though if you want to remove all post icon columns.
thanks ok. but post icon columns not deleted in theme
Well they won't delete themselves, you'll need to edit the templates. Smile