Mike4286 0 Posted October 30, 2019 Hi, It would be great if you could allow us to reset all stats to zero in Link Tracking with a check box and select all, Reset to zero. 0 Quote Share this post Link to post Share on other sites
brian! 3044 Posted October 30, 2019 1 hour ago, Mike4286 said: It would be great if you could allow us to reset all stats to zero in Link Tracking with a check box and select all, Reset to zero. if you wanted to do that, then all you would need to do is run a SQL query on the appropriate database table, e.g. in phpmyadmin... UPDATE tbllinks SET clicks = 0, conversions = 0 ... and that would reset the conversions and clicks back to zero for everyone. 🙂 note - always remember to backup the database before running any update query. ⚠️ 0 Quote Share this post Link to post Share on other sites