Yeah that is what I am saying. Add this field
Code:
field name: firstvisit
type: smallint
value: 1
default: 0
Now on your welcome to redirect or code area, add this.
PHP Code:
if ($user['firstvisit'] == '0') {
mysql_query("UPDATE users SET firstvisit='1' WHERE id='$user['id']'");
//Redirect
}
else {
//Don't redirect
}
So on each login, if its a 1, it will bypass the visitor page, if its a 0 it will show the page and also change their account to a 1 so it bypasses after that first view.