删除 class="form-item"来自 Drupal 表单

发布于 2024-10-17 18:04:21 字数 101 浏览 2 评论 0 原文


Drupal 自动在表单项周围添加

和类。所有表单元素都将具有属性 class = "form-item"。如何覆盖此默认行为?

Drupal automatically adds <div>'s and classes around form items. All form elements will have the attribute class = "form-item". How do I override this default behavior?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦明 2024-10-24 18:04:21

如果您坚持要更改它,它会添加到 theme_form_element 中 函数。您可以通过将该函数复制到主题的 template.php 文件并将其重命名为 THEMENAME_form_element (用主题名称代替“THEMENAME”)或 phptemplate_form_element 并删除添加类的部分来覆盖它。

If you insist on changing it, it's added in the theme_form_element function. You can override it by copying that function to your theme's template.php file and renaming it THEMENAME_form_element (substituting the name of your theme in place of "THEMENAME") or phptemplate_form_element and removing the part that adds the class.

〆凄凉。 2024-10-24 18:04:21

在实际经验中,这些都是有用的类,但如果您想要极其清晰的表单,您可以主题每个表单元素或主题表单:
我在这里找到的更接近您的任务(不仅是禅宗主题,而且不仅适用于用户登录块): Drupal 6 Zen 子主题上的自定义用户登录块 在“高级主题”部分,请参阅底部代码。

In real experience these are useful classes, but if you want to extremely clear form you can theme each form element or theme form:
Much closer to your task i found here (not only zen theme and not only for user login block): Custom User Login Block on Drupal 6 Zen sub-themes in "Advanced theming" part, see bottom code.

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