RedTyger |
01-31-2007 09:45 AM |
Quote:
Originally Posted by fringehead
(Post 1170985)
I just installed this mod, and it seems to break the Track Guests Mod. Any idea how to get these to work together?
Thanks!
Mr. F
|
What is the issue? I am not seeing any problems on my test forum.
Quote:
Originally Posted by GearTripper
(Post 1170732)
The addition to add usergroup visibility in Options would be nice. I know the edit is available, but a built-in option would be nice similar to Paul M's Groups allowed to View in his Who Has Visited Today hacks. also, does/can this differentiate between Members and Guests? and finally, possible for the Database Clean-up Period every 24 hours or at least optional for either 12 or 24 hours?
|
Usergroup display from the AdminCP has now been added.
It does not differentiate between members and Guests. This can easily be done yourself, just find this code at the very top of the global_start section of the plugin:
Code:
if ($vbulletin->options['referrers_onoff'])
and change it to
Code:
if ($vbulletin->options['referrers_onoff'] && !$vbulletin->userinfo['userid'])
That should only record Guest hits. Remove the ! to change it to only member hits. Untested, it's not something I intend to add.
Cleanup is done by cron, if you want to change the timing just edit it in the Scheduled Task listings.
|