How do I change the title " My Account" after logging in to "Welcome, [usernam]" ??
the title would be link to mysite.com/user/#### for user profile.

How do I set this up? I am completely new to this whole drupal world.

Thanks for your help.

Also, when I click "My Account" everytime i am already logged in it gives me this page

403 Permission Denied
You do not have permission for this request /user/

Comments

kinesus’s picture

any help would be appreciated

kinesus’s picture

can anyone help? is it really that hard to do?

nevermind, i'll just research and find out how to do this on my own.

Kirk’s picture

This is something that is a lot easier to do at the theme level, or even with php in a block than it is to modify the default navigation menu.

I don't know of any way to do what you're asking by just dropping in a module, but that doesn't mean it doesn't exist.

If you're comfortable with php, it is easy enough to do through your theme, or in a block with the following

<?php global $user; ?>
 Welcome <?php print l($user->name,'user/'.$user->uid); ?> 
<?php ?>
kinesus’s picture

thanks for your help Kirk.

I just switched to Joomla. A lot easier to use and great resources of information.

markconroy’s picture

Anyone get the feeling here that someone is throwing an unnecessary hissy fit? Just because your question wasn't answered striaght away is no need to get stroppy. Glad you find Joomla so right for your purposes.

============

Drupal Core Maintainer for "Out of the Box" Initiative.

aaewen’s picture

Is Joomla "that" easy comparing to Drupal?

gusantor’s picture

please can you post how you did it?

I'm the same issue now

tanks in advance

govindtotla’s picture

You can user logintoboggan module for this. And also it provides you more customization with this. http://drupal.org/project/logintoboggan
Enjoy... :)