Quote:
Now I still got one prob.. when Im logged in it still shows the login form on my none-vb page (duh).. any idea how I can solve that one?
|
You'll have to write a conditional statement to check if the vB login cookie is set, i.e.:
if ( ! $vb_login_cookie_is_set ) {
display login form
}
Just pseudo-code, sorry, I don't have any actual code to do this. This also assumes that your non-vB pages are PHP or some other scripting language where you can chech cookies and do conditional logic.