MyBB Community Forums

Full Version: [Tutorial] How to completely remove post icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6
Thanks, it works perfectly.
Thanks for such a great tutorial however you have missed this one!!!

In showthread_similarthreads_bit template

Remove
<td align="center" class="{$trow}" width="2%">{$icon}</td>

In showthread_similarthreads template

Find
<td class="tcat" align="center" colspan="2">

And replace with
<td class="tcat" align="center" colspan="1">

MikeInToshx

Awsome tutorial. Thankyou Smile
This is great, post icons are one of the most unnecessary features. So thanks.

I have followed all the instruction up to the 'conclusion' which I don't know how to do. Any help for a complete noob on this would be appreciated.
See http://community.mybb.com/thread-4720.html

If you can't find phpMyAdmin (or a similar tool) ask your web host.
Thanks! I will do this to my forum!
Thanks for taking the time to write this!
bump. is this a setting yet? or i do need to do these 50+ steps to turn off these childish icons?

thanks guys for all your hard work,
mike

Is it possible to do this "quick & dirty" and just do #1-4 in your directions above so the silly icons don't show. It seems to be working fine for my needs.

http://room2race.com/forum/newthread.php?fid=16

Thanks guys.
What the command for MyBB 1.8?

For MyBB 1.6 was
UPDATE mybb_threads SET icon = '';
UPDATE mybb_posts SET icon = '';
UPDATE mybb_privatemessages SET icon = '';

It don't work in mybb 1.8 Confused
Hi
Just stumped on this thread.. I don't know if actual version (1.8) has a option do hide that, but I use a css to override all the "row" display, that as title and the icons message. 
I know that the code will render it anyway, but you dont have do fiddle all the code for the tag {$posticons} to remove. Also seems that in this way can be reversible if you want to. Think is a good trade of.

<style>
tr:has(.posticons_label) {
    display: none;
}
</style>

also an option would hijack the portion of code on the php that renderes the {$posticons}...
Pages: 1 2 3 4 5 6