Quote:
Originally posted by tubedogg
very cool idea. thanks, wajones!
|
I like this better...
Create another copy of the last10.php named thelatest.php so you can set different param's.
Create a new forum and name it 'The latest posts" or what ever set it to "act as forum = no and open for posts = no" now put this into the phpinclude in place of what I told you before... $forumid being that forum you created
ob_start();
if ($forumid==34){
include_once("./thelatest.php");
$thisweek= ob_get_contents();
}else{
include_once("./last10.php");
$last10 = ob_get_contents();
}
ob_end_clean();
Now in the forumdisplay template find...
$forumdisplay[forumslist]
then right above it put
$thisweek
Now the last10 or $thisweek in this case will show as a forum and be in the jumpforum box for quick access
Let me know if you see any conflicts....