The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
This ain't pretty, but it should work...
Modify the template forumhome_forumbit_level2_nopost to output a different <a> tag. The default is to output a tag that points to forumdisplay.php, and in that script it notices that the forum is a link and send an HTTP header to change the LOCATION. Anway, let's assume you want this only done for a certain forum, say, forumid of 12. In the forumhome_forumbit_level2_nopost template, change the line: Code:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a> Code:
<if condition="$forum['link'] AND $forum['forumid']==12"> <a href="$forum[link]" target="_blank">$forum[title]</a> <else /> <a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a> </if> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|