Quote:
Originally Posted by cobradude
LBmtb, this looks great, though my needs might not fit the great work you've done here. Do you know a way to do this?
I have category > sub forum > sub forum. So basically I have forum areas that in forumdisplay have additional sub forums. I would like to show latest threads for just those particular sub forums....thoughts?
|
Go into your vBulletin adminCP > forums and moderators > forum manager. Then click on the subforum you're talking about. At the top of the page it'll say something like "Forum: General Discussion (id: 48)." Write down the ID #'s for the forums you want to include.
Now in the CUSTOMIZE THE FOLLOWING section of the script find
PHP Code:
// FORUM SOURCES FOR TOPICS
// use one or the other, not both. if left blank the script will return threads from any forum
$fidi_raw = ""; // ONLY include threads from these forums. seperate each ID with a comma
$fidx_raw = ""; // Exclude threads from these forum. seperate each ID with a comma
Insert your forum ID's into fidi_raw. If your ID's were 10 and 15 your line would be
PHP Code:
$fidi_raw = "10,15"; // ONLY include threads from these forums. seperate each ID with a comma
This will make it pull threads from only those forums you want.