Is it as simple as commenting out the return true line of this snippet from functions-tracking202.php?
//this will filter out a click if it the IP WAS RECORDED, for a particular user within the last 24 hours, if it existed before, filter out this click.
function checkLastIps($user_id, $ip_id) {
$mysql['user_id'] = mysql_real_escape_string($user_id);
$mysql['ip_id'] = mysql_real_escape_string($ip_id);
$check_sql = "SELECT COUNT(*) AS count FROM 202_last_ips WHERE user_id='".$mysql['user_id']."' AND ip_id='".$mysql['ip_id']."'";
$check_result = _mysql_query($check_sql) ; //($check_sql);
$check_row = mysql_fetch_assoc($check_result);
$count = $check_row['count'];
if ($count > 0) {
//if this ip has been seen within the last 24 hours, filter it out.
return true;
} else {
//else if this ip has not been recorded, record it now
$mysql['time'] = time();
$insert_sql = "INSERT INTO 202_last_ips SET user_id='".$mysql['user_id']."', ip_id='".$mysql['ip_id']."', time='".$mysql['time']."'";
$insert_result = _mysql_query($insert_sql) ; //($insert_sql);
return false;
}
}