Hi, I'm trying to output the username in a template and these two methods works .... however, is this correct? Isnt there a smarter way? (i need the user login password as well, un-encrypted). Code: $user = Am_Di::getInstance()->auth->getUser(); echo $user->login; Code: echo $_SESSION['amember']['_signup_container']['values']['page-0']['login'];
Seems the first method I posted is the "correct" one, however - I need the session details (for the unencrypted password). Seems aMember save the session details into the database as well, how can I extract those details?