VisEntities Active member Licensed customer 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?
articulatedthoughts New member Licensed customer Apr 3, 2025 #2 I'm curious about this as well. Upvote 0 Downvote
frm Well-known member Licensed customer 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.