View Full Version : showing pagenumbers when searching
Crapforum
03-06-2002, 07:26 AM
I would like to show the pagenumbers of topics too, when you do a search (active topics f.i.)
Does this take a lot of queries?
Can this be done easily?
thx,
www.crapforum.nl
Crapforum
03-07-2002, 09:12 AM
guess not :(
Admin
03-27-2002, 06:19 AM
I know this is old but I had this thread in my bookmarks and I'm just cleaning up. ;)
Anyhow, in search.php add this:
if (($bbuserinfo['maxposts'] != -1) and ($bbuserinfo['maxposts'] != 0)) {
$maxposts = $bbuserinfo['maxposts'];
}
if (($searchresult['replycount']+1) > $maxposts and $linktopages) {
$thread = $searchresult; // for templates
$totalpages = ($searchresult['replycount']+1)/$maxposts;
if ($totalpages != intval($totalpages)) {
$totalpages = intval($totalpages)+1;
}
$acurpage = 0;
$pagenumbers = '';
while ($acurpage++ < $totalpages) {
if ($acurpage == $maxmultipage) {
eval("\$pagenumbers .= \"".gettemplate('forumdisplay_multipagenav_more')."\";");
break;
} else {
eval("\$pagenumbers .= \"".gettemplate('forumdisplay_multipagenav_pagenumber ')."\";");
}
}
eval("\$searchresult[pagenav] = \"".gettemplate('forumdisplay_multipagenav')."\";");
} else {
$searchresult['pagenav']='';
}
right after this:
} else {
unset($paperclip);
}
(yes, this is rudely taken from forumdisplay.php)
And now in your searchresultbit_threadonly template add:
<smallfont>$searchresult[pagenav]</smallfont>
in the same line after:
$searchresult[threadtitle]</a></normalfont>
Crapforum
03-27-2002, 05:43 PM
wow, thx...
i will give it a try.
heynurse
05-06-2002, 07:20 PM
My users had this exact request, since they use the "Todays Active Threads" link alot, I just followed FireFly directions and it worked great! Thanks FireFly!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.