Hello everyone,

I have looked everywhere and read so much my eyes are sore and I can't find what I am looking for. Although it is probably there!

I am using the Front Page module. I want to have a welcome note on the front page that shows the logged in user's username. Something like - 'Welcome back BizAd'.

Is this possible, and if it is, can anyone tell me how to do it?

Thanks very much.

Comments

BizAd’s picture

If anyone else needs the answer - here it is:

global $user;
  if ($user->uid) {
    print t("<b>Welcome back $user->name.</b>");
  }
  else {
    print t("Welcome to the site");
  }