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)
-   -   Greet by first name only (https://forum.x-cart.com/showthread.php?t=50976)

hollaratbear 11-25-2009 04:15 PM

Greet by first name only
 
I'm attempting to greet my customers by first name only on a static page that I've created. I've seen a couple of other posts related to this, but no prior suggestions seem to work in my environment. Anyone know a simple way to display user's first name on a static page?

Jon 11-25-2009 08:44 PM

Re: Greet by first name only
 
Try this.

Open pages.php

FIND:

Code:

# Assign the current location line

BEFORE ADD:

Code:

if ($login)
$smarty->assign('showFirstname',func_query_first_cell("SELECT firstname FROM $sql_tbl[customers] WHERE login='" . mysql_real_escape_string($login) . "'"));


Then in your static page you can use {$showFirstname}

hollaratbear 11-25-2009 09:07 PM

Re: Greet by first name only
 
Worked like a charm! You rule. Thanks a million.


All times are GMT -8. The time now is 03:50 AM.

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