View Single Post
  #5  
Old 10-25-2006, 06:28 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: Customer name in login message

check_useraccount.php

add

Code:
$smarty->assign("login_lastname",$user_account["lastname"]); $smarty->assign("login_firstname",$user_account["firstname"]);

then in your template

Code:
Welcome back {$login_firstname} {$login_lastname}

... that might do the trick.
__________________
xcartmods.co.uk
Reply With Quote