Drupal:在网络表单中的提交按钮上方添加免责声明文本
有没有一种简单的方法来修改 webform-form-tpl.php 模板以在 Drupal Web 表单中的提交按钮上方显示免责声明文本?我可以在按钮下方添加文本,但不知道如何将按钮与其他元素分开以在它们之间添加文本,即:
[form-elements]
[disclaimer text]
[submit button]
干杯!
Is there an easy-ish way to modify the webform-form-tpl.php template to show disclaimer text above the submit button in a Drupal webform? I can add text below the button, but do not know how to split up the button from the other elements to add text between them, ie:
[form-elements]
[disclaimer text]
[submit button]
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的选项可能是使用
hook_form_alter< 将文本作为标记表单项插入/code>
在表单上。
The easiest option is probably is insert the text as a markup form item using
hook_form_alter
on the form.这对我有用:
This worked for me :
这并不真正属于主题层;这是内容。您可以将免责声明作为标记组件添加到 Web 表单的末尾,它应该出现在其他 Web 表单组件之后和提交按钮之前,如您所愿。
This doesn't really belong in the theme layer; it's content. You can add the disclaimer as a markup component to the end of the webform and it should appear after the other webform components and before the submit button like you want.