覆盖/自定义 Drupal 模块

发布于 2024-11-14 00:58:11 字数 90 浏览 3 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千里故人稀 2024-11-21 00:58:11

您绝对应该创建一个子主题来自定义外观和感觉。否则,每次升级核心时,您都必须重新应用更改。您可以按照这些步骤对默认的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文