MyBB Community Forums

Full Version: Topic Notifications
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I remove the notifications before a topic to say if someone read it or not.

[Image: J7Ub.png]

My website is http://www.gamerkings.co.uk
I just need to remove them horrible icons
You can change them by uploading new images to ./images/*yourtheme* with the names on.gif, off.gif and offlock.gif.

Alternatively, if you want to remove them:

Admincp -> Templates & Style -> Templates -> Your Theme's Templates -> Forum Bit Templates -> forumbit_depth2_forum

Find & Remove:
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>

Admincp -> Templates & Style -> Templates -> Your Theme's Templates -> Forum Bit Templates -> forumbit_depth1_cat

Find:
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>

Replace with:
<td class="tcat" colspan="1"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
(2012-10-07, 10:15 AM)Vernier Wrote: [ -> ]You can change them by uploading new images to ./images/*yourtheme* with the names on.gif, off.gif and offlock.gif.

Alternatively, if you want to remove them:

Admincp -> Templates & Style -> Templates -> Your Theme's Templates -> Forum Bit Templates -> forumbit_depth2_forum

Find & Remove:
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>

Admincp -> Templates & Style -> Templates -> Your Theme's Templates -> Forum Bit Templates -> forumbit_depth1_cat

Find:
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>

Replace with:
<td class="tcat" colspan="1"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>

Thankyou, worked perfectly.