How do you exclude yourself from pageviews traffic?
-
Hey, is it possible to exclude the admins from counting into pageview stats that shows in admin panel?
Thanks.
-
There is no setting to control that but you can modify this line https://github.com/NodeBB/NodeBB/blob/master/src/analytics.js#L96 and add your user id there to prevent page views from uid 1. For example
Analytics.pageView = async function (payload) { if (payload.uid === 1) { return; } local.pageViews += 1;
-
Amazing. I will give that a shot. Thanks Baris.
Copyright © 2024 NodeBB | Contributors