覆盖/自定义 Drupal 模块
我想在 Drupal 7 安装中覆盖自定义用户模板。问题是 - 我应该在主模块中编辑模板文件还是将模块复制到我的主题文件夹并在那里编辑?如果是第二种选择,我该怎么办?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您绝对应该创建一个子主题来自定义外观和感觉。否则,每次升级核心时,您都必须重新应用更改。您可以按照这些步骤对默认的 Drupal 7 主题 (Bartik) 进行子主题化。
完成此操作后,将 user-profile.tpl.php 文件复制到子主题目录 (/sites/all/themes/mytheme) 中。
最后,对 user-profile.tpl.php 进行您想要的更改
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