MyBB Community Forums

Full Version: Edit templates (index page)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How delete column "Threads" in index page?
Have a look at the forum bit templates.
Where I must edit?
Modify/Delete templates in your admin section.
Select Template set you wish to edit and click expand, look for forum bit templates.
There is only css... Sad
I assure you there is templates also. Smile
This is very important for me. Please help Smile

http://images21.fotosik.pl/228/4210a91b75822318.jpg
I shouldn't be showing you this... Whatever you "Break" is YOUR responsibility to adjust the the other %'s to keep the table at the correct width.

Template Management / YOUR Template / Expand / Forum Bit Templates / forumbit_depth1_cat /

Find and REMOVE:

<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_threads}</strong></td>

Why you need to remove it I have NO idea... Sad
In forumbit_depth1_cat I have:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead" colspan="5">
<div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" /></div>
<div><strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</td>
</tr>
</thead>
<tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<tr>
<td class="tcat" width="35">&nbsp;</td>
<td class="tcat"><strong>{$lang->forumbit_forum}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_threads}</strong></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_posts}</strong></td>
<td class="tcat" width="200" align="center"><strong>{$lang->forumbit_lastpost}</strong></td>
</tr>
{$sub_forums}
</tbody>
</table>
<br />

How edit this if delete "Threads" column. When I remove

<td class="tcat" width="85" align="center" style="white-space: nowrap"><strong>{$lang->forumbit_threads}</strong></td>

Disappear only headline. Sad
You will need to change the widths of the other columns to make it all add up to 100%
Pages: 1 2