Whats the code to show a username/first name, email etc. in the thanks or internal members page? Used to be: {$smarty.session._amember_user.name_f} Now your using php code. Tried: <?php __e($user->name_f)?> Dont think this is documented yet? What about on pages created in the amember "protected pages" area? David
This depends on template that you use. On thanks template there is no user variable, but tyou can get it in such way: PHP: <?php$user = $invoice->getUser();print $user->login;?> On protect pages you can't access aMember variables.
on thanks getting the userid, but also got an error. Changed to this and it worked: <?php $uservar = $invoice->getUser(); print $uservar->login; ?>