The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Taking forum markers out?
How can I take the forum markers out of my forum?
|
#2
|
||||
|
||||
So you don't want the "board" icons next to forum names? Is that what you are referring to?
|
#3
|
|||
|
|||
Yes that is what I am saying
|
#4
|
||||
|
||||
I believe you will need to modify a few templates (forumhome_forumbit_*) to remove the column.
|
#5
|
|||
|
|||
Hmm, how do I go about this? Where is it located? I am really new with VB
|
#6
|
||||
|
||||
Admin CP > Styles & Templates > Dropdown Menu > Edit Templates > Forum Home Templates
Edit FORUMHOME, find and remove: Code:
<td class="thead"> </td> Code:
<!-- icons and login code --> <table cellpadding="0" cellspacing="2" border="0" width="100%"> <tr valign="bottom"> <td> <table cellpadding="2" cellspacing="0" border="0"> <tr> <td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td> <td class="smallfont"> $vbphrase[forum_contains_new_posts]</td> </tr> <tr> <td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td> <td class="smallfont"> $vbphrase[forum_contains_no_new_posts]</td> </tr> <if condition="$vboptions['showlocks']"> <tr> <td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td> <td class="smallfont"> $vbphrase[forum_is_closed_for_posting]</td> </tr> </if> </table> </td> <if condition="!$show['guest']"> <!-- member logout --> <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td> <!-- end member logout --> </if> </tr> </table> <!-- / icons and login code --> Code:
<if condition="!$show['guest']"> <!-- icons and login code --> <table cellpadding="0" cellspacing="2" border="0" width="100%"> <tr valign="bottom"> <!-- member logout --> <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td> <!-- end member logout --> </tr> </table> <!-- / icons and login code --> </if> Code:
<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if> Code:
<if condition="$vboptions[showmoderatorcolumn]">5<else />4</if> Code:
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|