Hi,
usually VBulletin displays all current moderators of a forum on the mainpage (as far as the function ist enabled in the acp). We've got one forum (plus its subforums) with _many_ moderators - for this one forum we would like to only show the moderators usergroup on the mainpage (the collum gets HUGE otherwise).
We started to modify the code, but we are getting problems with commas, which are still beeing added by vbulletin for each moderator.
Code we've changed in the forumhome_moderators:
original code:
Code:
<a href="member.php?$session[sessionurl]u=$moderator[userid]" rel="nofollow">$moderator[musername]</a>
new code:
Code:
<if condition="$forumid==746">
<if condition="$moderator[username]==FinSHeR">
<a href="/showgroups.php"rel="nofollow">Replay Reviewers</a>
</if>
</if>
<if condition="$forumid==749">
<if condition="$moderator[username]==FinSHeR">
<a href="/showgroups.php"rel="nofollow">Replay Reviewers</a>
</if>
</if>
<if condition="$forumid==750">
<if condition="$moderator[username]==FinSHeR">
<a href="/showgroups.php"rel="nofollow">Replay Reviewers</a>
</if>
</if>
<if condition="$forumid!=746">
<if condition="$forumid!=750">
<if condition="$forumid!=749">
<a href="member.php?$session[sessionurl]u=$moderator[userid]"rel="nofollow">$moderator[username]</a>
</if>
</if>
</if>
I'm hoping the screenshot makes clear what I mean. What needs to be done, to get rid of the commas? Or is there any available hack already dealing with this problem?