I would like to override custom user template in my Drupal 7 installation. The question is - should I edit the template file in the main module or copy the module to my theme's folder and edit it there? In case of the second option, how can I do it?

link|improve this question

Which template are you editing specifically? You should almost definitely not edit the template file in the module itself... – hross Jun 5 '11 at 16:04
user-profile.tpl.php – Vafello Jun 5 '11 at 16:41
feedback

1 Answer

up vote 4 down vote accepted

You should definitely create a subtheme to customize the look and feel. Otherwise, every time you upgrade core you will have to reapply your changes. You can subtheme the default Drupal 7 theme (Bartik) by following these steps.

Once you have done that, copy the user-profile.tpl.php file into your subtheme directory (/sites/all/themes/mytheme).

Finally, make the changes you want to make to user-profile.tpl.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.