是否有一种简单的方法可以修改 webform-form-tpl.php 模板以在 Drupal 网络表单中的提交按钮上方显示免责声明文本?我可以在按钮下方添加文本,但不知道如何将按钮与其他元素分开以在它们之间添加文本,即:
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]
干杯!
最简单的选择可能是使用 hook_form_alter
在表单上.
The easiest option is probably is insert the text as a markup form item using hook_form_alter
on the form.
这篇关于Drupal:在网络表单中的提交按钮上方添加免责声明文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!