Hey, just wondering if anyone knew how to add a popup window. I have my site redirect non members when they click any of the menu to a log in page.
it works good, but i wanted to have a pop-up window when the non members get redirected to log in page say "You must be logged in to view this page press OK to cantinue" and should have a OK button.
the code i use is membersonlyinstall witch i found from this site. Redirect non members
//Check if Logged In
check_logged();
if(!isLogged()) {
login_form();
exit;
}
