This topic is locked

Change Guest to Member

7/25/2008 11:51:17 PM
PHPRunner General questions
bbarker author

How can I change the notice "Logged as Guest" to "Logged as Member"? On the List page?
In trying to solve this I discovered that you can't rename <Guest> in the Advance Security Settings. Well, you "can", but it didn't change anything else.

J
Jane 7/28/2008

Bill,
try to use this code in the List page: before display event:

if ($_SESSION["UserID"]=="Guest")

$smarty->assign("userid","Member");

bbarker author 7/28/2008

SOLVED -- thanks. Works great.