drupalfun.com
User Box after logon
How did you create the user box that lists numerous bullets from creating content, my account, my stuff, etc.
Did you use a view? I can't figure out how to link the user id or name automatically to the block. Thanks in advance for your help.
Related Questions
Responses
2. thanks for the prompt reply.
thanks for the prompt reply. I found the To Do Block so I guess I can get the following by removing the images. How do you make the title of the block to be the name of the registered user?
Thomasr976
Create content
AdSense Program
My stuff
Messages
My Unread
My account
About Drupalfun
Contact
User locations
My Brain cells
Log out
Recent posts
Thank you.
3. Hi, This is the standard
Hi,
This is the standard title for the navigation block.
If you want to display the username (if you use automatic titles for content profile), you can output the username as follows:
<?php
global $user;
$myuid= $user->uid;
$node= content_profile_load(profile, $myuid);
print $node->title;
?>
If you put this code between < h2 >'s you'll get a title as well.


1. It's a totally custom book.
It's a totally custom book. The code is in the ebook under to do block.