By unxposed on
How would I go about changing elements of the user account edit page?
i.e. I would like to move the upload avatar bit to the top, and add an image to it.
How would I go about changing elements of the user account edit page?
i.e. I would like to move the upload avatar bit to the top, and add an image to it.
Comments
You can implement
You can implement hook_form_alter() function. Once you implement this, you will have access to the form before it is rendered. Then you can play with the form element's weight attribute. Something like this. You can also add form elements to it inside this function
Baldwin Louie,
BitSprout LLC
http://www.bitsprout.net
Thanks for that. Could I
Thanks for that. Could I just put this in the template.php file or would I need to create a module. (which I don't think I'm able to do - not very good at php!)?
Thanks!
This method would require a
This method would require a module. This should get your started: http://drupal.org/node/231276
Baldwin Louie,
BitSprout LLC
http://www.bitsprout.net
Thanks. I created a module
Thanks. I created a module called moveforms: