View Single Post
  #3  
Old 02-17-2005, 01:14 AM
 
andreas04031 andreas04031 is offline
 

Advanced Member
  
Join Date: Jun 2004
Location: Dallas, TX
Posts: 64
 

Default

Here it is, for 4.0.11

authbox.tpl

Code:
{$login_firstname}{$login_lastname}{$lng.txt_logged_in}
you can format this as you want, you might put a
after the {$login_lastname} to get the text "is logged in" into the next line...

in check_useraccount.php

add line

Code:
$smarty->assign("login_lastname",$user_account["lastname"]);
below the line for the first name
Code:
$smarty->assign("login_firstname",$user_account["firstname"]);

Cheers, Andy
__________________
X-Cart version 3.5.9 (online)
X-Cart Version 4.0.19 (online)
X-Cart Version 4.1.3 (in dev)
PHP 4.4.4
MySQL 4.1.21
Reply With Quote