MyBB Community Forums

Full Version: Removing 'Rating' Column
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
is there a way to get rid of the rating column on the thread display page?
Admin CP --> Templates --> *expand your template set* --> Forum Display Templates
You will need to edit these two templates:
forumdisplay_thread
Find and remove:
	{$rating}

forumdisplay
Find and remove:
		{$ratingcol}
thanks

now how do i remove the 'Moderator' column on the index page? (i'm using MyBulletin)
I suppose you are using a customized theme. because the default theme doesn't have a moderator column.
Can i see the content of forumbit_depth2_forum and forumbit_depth2_cat.
forumbit_depth2_forum
 <tr>
<td class="trow2" align="center" valign="middle"><img src="http://i11.photobucket.com/albums/a161/Eldyablo/MyBB/off.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" /></td>
<td class="trow1" valign="top">
<strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><div class="smalltext">{$forum['description']}{$subforums}</div>
</td>
<td class="trow2" width="236" valign="top" align="left" nowrap="nowrap">$lastpost</td>
<td class="trow1" width="16" valign="middle" align="center" nowrap="nowrap">$threads</td>
<td class="trow2" width="20" valign="middle" align="center" nowrap="nowrap">$posts</td>
<td   class="trow1" width="60" valign="middle" align="center" nowrap="nowrap">$modlist</td>
</tr> 



forumbit_depth2_cat.
<tr>
<td class="tcat">&nbsp;</td>
<td class="tcat" colspan="4"><strong>&raquo;&nbsp;&nbsp;<a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong><br /><span class="smalltext">{$forum['description']}{$sub_forums} </span></td></tr> 
You'd be removing:
<td   class="trow1" width="60" valign="middle" align="center" nowrap="nowrap">$modlist</td>
From the forumbit_depth2_forum template.

Actually we need to see forumbit_depth1_cat, if you wouldn't mind posting it.
forumbit_depth1_cat
 <tr><td class="thead" colspan="6"><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><tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
{$sub_forums}</tbody> 
Actually it might be easier if you revert the change I mentioned above, and disable the setting Admin CP --> Settings --> Forum Home Options --> Show Moderators Listing
^^^ that didnt work
Gringo Wrote:forumbit_depth1_cat
 <tr><td class="thead" colspan="6"><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><tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
{$sub_forums}</tbody> 

Are you sure this is the code in forumbit_depth1_cat? can you revert this template to original please?.
Pages: 1 2