PDA

View Full Version : How to add another icon to the forum legend


Floris
Sun 8th Apr '07, 7:38pm
The forum's home page has a legend below the what's going on box explaining what each forum icon means.
But since version 3 of vBulletin it is possible to add a forum that behaves as a remote link, this icon is not listed.
This modification tells you how to add it to make the list complete.

22467

Go into the admin control panel and open the template 'FORUMHOME', find this code:

<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
</tr>


Below this code, on a new line, and before the </table> tag, add the follow code:

<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_link.gif" alt="Forum is a remote link" border="0" /></td>
<td class="smallfont">&nbsp; Forum is a remote link</td>
</tr>


And save the template.