The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I was wondering how would I move the lil bar above a forum...where it says forum last post and so on.. I wanna remove it from a specific forum...
I know how to add something to specific forum like Code:
<if condition="$forum['forumid'] == FORUMID">CODE</if> I have attached picture of the bar im trying to remove... I added the subforums to collums in that forum and Im trying to remove the bar and the status icons from that specific forum.... Thank You if you can help me ![]() |
#2
|
||||
|
||||
![]()
Find the following in the "FORUMHOME" template and either delete it or comment it out:
Code:
<thead> <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead" width="175">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> </thead> |
#3
|
||||
|
||||
![]() Code:
<if condition="$forum['forumid'] != FORUMID">CODE</if> |
#4
|
|||
|
|||
![]()
I found the problem I got it working the location of the bar is in
forumhome_forumbit_level1_nopost though im curious would anyone know how I could also remove the staus icons from that specific forum I tried using the same code.. but it doesnt seem to work the status icons are in forumdisplay |
#5
|
||||
|
||||
![]() Code:
<if condition="$foruminfo['forumid'] != FORUMID">CODE</if> |
#6
|
|||
|
|||
![]()
Thank you for all the help dismounted...the code worked on forum home to remove the bar.. but for somereason no matter what I try in forumdisplay to remove these icons it doesnt work....here it how I have it now and doesnt work.....Any more help will be greatly appreciated
Code:
<!-- icons --> <if condition="$foruminfo[forumid] != '5'"> <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> <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> </table> </td> </tr> </table></if> <!-- /icons--> |
#7
|
||||
|
||||
![]()
Try:
Code:
<if condition="$forum['forumid'] != 5"> |
#8
|
|||
|
|||
![]()
Yeah I tryed that....I didnt work....But again thank you
|
#9
|
||||
|
||||
![]() Code:
<if condition="$forumid != 5"> |
#10
|
|||
|
|||
![]()
Yeah I tryed that no go...Guess ill soon give up..just wanted to remove the icons in certain forum because have all the subforums in collums... And it looks ugly with the icons...maybe I can find an alternative to removing them
Thank you so much for your help Dismounted.. I tryed everything and they still dont remove unless I delete the code then it removes them on every forum |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|