VisEntities Active member Feb 2, 2025 #1 Is there an overall view/visit statistics for the entire forum available in the statistics dashboard?
Is there an overall view/visit statistics for the entire forum available in the statistics dashboard?
frm Well-known member Apr 3, 2025 #3 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. Upvote 1 Downvote
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.