Fenriz
10-04-2005, 01:11 AM
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>
--------------------------------------------------------------------------
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>