The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I am looking for a way to display the moderators of a particular forum underneath the forum name and description on the forum home page, similar to the way phpbb displays forum moderators. Does anyone if such a mod exists or if there is an easy way to do this?
|
#2
|
|||
|
|||
![]()
Just add the $forum[moderators] variable where you want in the forumhome_forumbit_level1_nopost template for example beneath the $forum[description] variable (use <br /> to put it on a new line)
![]() I think you have to turn on the moderator column option to get the variable to work (so you need to remove the moderator column from the templates). |
#3
|
|||
|
|||
![]() Quote:
Quote:
|
#4
|
|||
|
|||
![]()
Just search for $vboptions['showmoderatorcolumn'] in the templates. That's the condition that controls it, so you can remove is easily
![]() |
#5
|
|||
|
|||
![]()
Hmmmm, perhaps *you* could remove it easily....you give me far too much credit, though.
![]() I found the following code in the forumhome template: Code:
<!-- guest welcome message --> <tr> <td class="vbmenu2_control" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><center><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></center></td> </tr> <tr> <td colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"> <phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase> </td> </tr> <!-- / guest welcome message --> |
#6
|
|||
|
|||
![]()
No, just look at the condition with that vBulletin option. So in this case this part of that code:
Code:
<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if> So you change it to: Code:
5 Like that you edit all the templates where you find this vBulletin option ![]() |
#7
|
|||
|
|||
![]()
Ok, sheesh, I feel like a moron. I changed the colspan to colspan="5", added the forum moderator code above to the template mentioned ($forum[moderators]), and switched it to display the mods column. The result was the standard display of the standard moderator column down the side, that I didn't want. What the heck did I do wrong?? UGH.
Thank you very much for help by the way, I really do appreciate it. ![]() |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|