In my theme, at the top of the window, it shows the following message:

You are logged in as: Navs | Edit | Logout

I would like to show the badge next to the username before "| Edit". How can I do this?
Thanks
Navs

Comments

navs’s picture

I tried copying the following code into my page.tpl.php

<?php print user_badges_for_uid($uid); ?>

Nothing is showing up? I'm only able to see the badge image when I click on "My Account". I am unable to invoke the badge within my page.tpl.php.

What should I do?

navs’s picture

Status: Active » Closed (fixed)

I needed to add User-uid

the code that fixed the issue is:

<?php echo user_badges_for_uid($user->uid); ?>