Posted by no_longer_active_19 on November 17, 2012 at 8:02am
Notice when you click on hello user in admin menu it directs you to your my account but users wouldn't know that unless when you hovered over it it said "my account" or if instead of saying 'hello user' it said 'my account' so is there a way of changing it?
Comments
=-=
two methods:
utilize http://drupal.org/project/stringoverrides & locate the t() string being used in admin module by performing a search on the file for the word Hello onm the files of admin module
you should locate:
t('Hello <strong>@username'</strong>copy and paste the text between the single quotes to stringoverrides.module administration field and alter as needed
else utilize create a custom module to interact with the hook
function admin_menu_toolbar_admin_menu_output_alter(&$content) and alter as wanted.else
"utilize create a custom module to interact with the hook function" how would you go about that!?
=-=
by learning to write modules using current documentation, the api, and examples.module
not yet
not yet ready for that so just enabled my account menu- simplest solution for now, thanks.