X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Customer name in login message (https://forum.x-cart.com/showthread.php?t=26065)

abeight 10-24-2006 08:16 AM

Customer name in login message
 
In the authbox after a customer logs in it says "username is logged in!" - How can that be changed to list the customer's first and last name instead of the username?

V 4.1.3

Thanks!

ranger82nd 10-24-2006 12:32 PM

Re: Customer name in login message
 
In authbox.tpl
Replace:
Code:

{$login}
with:
Code:

{$userinfo.firstname} {$userinfo.lastname}
should do it!

Hey Andrea! :wink:

abeight 10-24-2006 01:12 PM

Re: Customer name in login message
 
Thanks - I found that code from the registration template and inserted it, but the name only shows on certain pages like the modify profile page, but not all pages.

ranger82nd 10-25-2006 06:00 AM

Re: Customer name in login message
 
Must be a 4.1.3 thing, works fine in 4.0.17!
Post the authbox.tpl code, and a link to the site (if you can) when you get a chance.

PhilJ 10-25-2006 06:28 AM

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.

ranger82nd 10-25-2006 06:43 AM

Re: Customer name in login message
 
OK, nevermind Andrea, I see what your talking about.
PhilJ - worked perfectly!

abeight 10-25-2006 12:26 PM

Re: Customer name in login message
 
Thanks, Phil. That worked great! :)

Thedae2k 05-14-2008 11:19 AM

Re: Customer name in login message
 
Phil do you have a fix for this in 4.1.9...I can't find the file check_useraccount.php?

Thedae2k 05-14-2008 11:20 AM

Re: Customer name in login message
 
Found it in the include folder

Thedae2k 05-14-2008 11:32 AM

Re: Customer name in login message
 
Got it to work great on 4.1.9.
Thanks Phil!


All times are GMT -8. The time now is 03:11 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.