MyBB Community Forums

Full Version: remove status icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i need help removing the status icons can anyone help me what i mean is this: the on and off icons.
[Image: n3ru6e.jpg]
If you mean the forum legend:

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

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


forumbit_depth2_forum:
Find and 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>


forumbit_depth2_cat:
Find and 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>

forumdisplay_subforums:
Find and remove:
<td class="tcat" width="2%">&nbsp;</td>
fixed thx.
Wow i just tried it and now my forum is messed up Sad
[Image: 1f0704a1e9aaa51ecc0e07f36dd119b2.png]

Someone please help me
(2012-05-29, 01:05 AM)Monkey Boy Wrote: [ -> ]Wow i just tried it and now my forum is messed up Sad
http://gyazo.com/1f0704a1e9aaa51ecc0e07f36dd119b2.png

Someone please help me

Any link to the forum?
A guess without a link would be that you in the forumdisplay_subforums template have one <td></td> thing to much:

Original code:
<td class="tcat" width="2%">&nbsp;</td>
<td class="tcat" width="59%"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>

Try removing:
<td class="tcat" width="2%">&nbsp;</td>

But without a link not sure.
My website link is www.codingbay.net and i just tried that and it still not working Sad
(2012-05-29, 01:27 AM)Monkey Boy Wrote: [ -> ]My website link is www.codingbay.net and i just tried that and it still not working Sad

In templates> forum display templates > forumdisplay_subforums add above the following code:

<tr>
(insert html code line below here)
<td class="tcat" width="59%"><span class="smalltext"><strong>Forum</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Threads</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Posts</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>Last Post</strong></span></td>
</tr>


This line:

<td class="tcat" width="2%">&nbsp;</td>

So it looks like this:

<tr>
<td class="tcat" width="2%">&nbsp;</td>
<td class="tcat" width="59%"><span class="smalltext"><strong>Forum</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Threads</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Posts</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>Last Post</strong></span></td>
</tr>



There are quite a few problems /eep

http://codingbay.net/forumdisplay.php?fid=2
http://codingbay.net/forumdisplay.php?fid=1

I honestly would resset some forumdisplay templates if i were you. Atleast the ones you changed, and restore them to default.
(2012-05-29, 01:05 AM)Monkey Boy Wrote: [ -> ]Wow i just tried it and now my forum is messed up Sad
[Image: 1f0704a1e9aaa51ecc0e07f36dd119b2.png]

Someone please help me
I had the same problem. I think it's because I'm using ForumIcons plugin.
In forumbit_depth1_cat I hat <td class="tcat" colspan="3"> and turned to <td class="tcat" colspan="2"> instead of deleting.
Now works perfectly.
Thanks!

PS: this tutorial include how to remove footer icons from "index" template: http://community.mybb.com/thread-126866.html
PS2: I'm using Mybb 1.6.9