XF 2.3 Forum-Wide View/Visit Stats?

You could do this DB query for total thread views (would need to expand on it for other content types):
SQL:
SELECT SUM(view_count) as thread_views FROM `xf_thread`;

I don't think XF tracks visits, though.
 
Back
Top Bottom