View Full Version : total thread views
Jakub03
01-15-2012, 01:02 AM
In statistics on bottom of page it shows like total threads, and total posts. Is there a way to show total thread views?
Boofo
01-15-2012, 01:38 AM
Yes, but you would have to run a query to get that info.
Jakub03
01-15-2012, 01:45 AM
Is that hard to do?
Boofo
01-15-2012, 01:58 AM
Not at all. I do it for my forumhome stats cache mod on my site. Here is the query I use:
$threadviews = $vbulletin->db->query_first("
SELECT SUM(views) AS tviews
FROM " . TABLE_PREFIX . "thread
");
Jakub03
01-15-2012, 03:04 AM
does this take a lot of server usage? and sorry im such a nub lol where do i input the query?
Boofo
01-15-2012, 03:13 AM
You would put it in the forumhome_complete hook as a plugin and use {vb:raw threadviews.tviews} in the forumhome template where you want it to show. Make sure you pre-regsiter the variable in the forumhome template.
Jakub03
01-15-2012, 07:15 PM
Is it possible to make the total thread views appear only on specific forums?
https://vborg.vbsupport.ru/external/2012/01/49.png
Like for it to count the total views that the individual threads get, not the forums. :P
http://mypokerhub.com/forumdisplay.php?52-My-Poker-Hub-TV is the link to the page i want to display total views.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.