I’m building my first site with drupal. And I made a custom user field: Full name.
Now I want to get the value of this fild in my template to say “Hello, %username%”.
How do I do that?
I’m building my first site with drupal. And I made a custom user field:
Share
Depending on your setup/field name, something like this in
template.php(preprocess function for the template file):Then something like this in
page.tpl.php:Note that
LANGUAGE_NONEmay need to be changed if you’re running a multi-lingual site.