columns need to be fixed in forum

Status
Not open for further replies.
4 comments
Remember to backup your templates before editing:
This is posted on VB
I tried this on my site worked well, I just read a few replies on VB someone said it works on v3.8
Code:
http://www.vbulletin.org/forum/showthread.php?t=180937
Code:
1- go to you "FORUMHOME" template
2- look for the  the following code:
PHP:
<tr align="center"> 
     <td class="thead">&nbsp;</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>
Code:
3- if it there remove it and save the template. if it not there just let the template as it is without any changes.

4- go to "forumhome_forumbit_level1_nopost" template

5- find the following code:
PHP:
<tr align="center"> 
     <td class="thead">&nbsp;</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>
Code:
6- if it there,  replace it with the following:
PHP:
<tr align="center"> 
      <td class="thead" width="5%">&nbsp;</td> 
      <td class="thead" width="50%" align="$stylevar[left]">$vbphrase[forum]</td> 
      <td class="thead" width="25%">$vbphrase[last_post]</td> 
      <td class="thead" width="10%">$vbphrase[threads]</td> 
      <td class="thead" width="10%">$vbphrase[posts]</td> 
      <if condition="$vboptions['showmoderatorcolumn']"> 
       <td class="thead" width="0%">$vbphrase[moderator]</td> 
  </if> 
</tr>
Code:
and save. and it's done.

if it not there just add it exactly after the following code:
PHP:
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
Code:
then save and it's done
 
thanks for ur info,
but i can't vbulletin official site..

Code:
http://www.vbulletin.org/forum/showthread.php?t=180937

i saw download now text too in this page..

so is there a mod or plugin too ??? or just a modifications of template,,
 
Status
Not open for further replies.
Back
Top