PDA

View Full Version : Quick Hack Guidence Request


leeherron
06-09-2002, 08:06 PM
Trying to replace a forum listing within a section, to a hardcoded link.

Currently VBB2 does:

Section 1
forum|posts|threads|last post|moderator

img|forumtitle|
description|post count|threads|last post|moderators

[repeat]

Section 2

forum|posts|threads|last post|moderator

img|forumtitle|
description|post count|threads|last post|moderators

<-- I would like to insert a static link table data here like it was an actual forum .. but simply a link somewhere else. (another forum of ours)

apfeifer
06-09-2002, 10:08 PM
You could insert it in the bottom of all the forums like they do here at vbulletin.org linking back to vbulletin.com, or you could put a little thing like

if ($forumid == "X") {
$var .= "what you want the link to be";
}


That would insert that info after forum X. You would want to make it have all the html/etc though, and maybe even put it in a custom template.

leeherron
06-09-2002, 11:41 PM
My question is in which file would I make that change? I've looked at the templates, but am not sure the correct one.

leeherron
06-11-2002, 03:19 AM
No ideas?