The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Views & Replies Count in Last Post box
Hi! Is it possible to make the hack "Views & Replies Count in Last Post box" for the vBulletin 3.5? I have next working code for the 3.0.x:
-------------------------------------------------------------------------- In the includes/functions_forumlist.php find: $show['lastpostinfo'] = (!$lastpostforum['password'] OR verify_forum_password($lastpostforum['forumid'], $lastpostforum['password'], false)); below that insert: $tviews = $DB_site->query_first("SELECT views AS tviews, replycount AS treply FROM " . TABLE_PREFIX . "thread WHERE threadid = $lastpostinfo[lastthreadid]"); $forum[tviews] = $tviews['tviews']; $forum[treply] = $tviews['treply']; In the forumhome_lastpostby template find: </div> </if> below that insert: <div class="smallfont" align="$stylevar[center]"> views: $forum[tviews] | replies: $forum[treply] </div> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|