View Single Post
  #2  
Old 11-25-2009, 08:44 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default 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}
Reply With Quote