By DrupalNovice on
I'm facing difficulties while trying to alter the help text on admin/user/user.
The text is "Drupal allows users to register, login, log out, maintain user profiles, etc. Users of the site may not use their own names to post content until they have signed up for a user account".
I'd like to change it to somehting else. I'm using hook_help in a custom module, but instead of the output from the user module being overwritten, the user module's help text is displayed and after that comes my modifications.
How can i completely remove/overwrite the user module's help text on admin/user/user without altering the module itself.
Comments
You can over write any
You can over write any functions of any modules in the template file of your theme
fuction theme_preprocess_page($vars)
{
overwriting
}
Aah, of course. Did not think
Aah, of course. Did not think of that.
Thank you!
Devel module will help you to
Devel module will help you to find the function
Cheers
Prasath