且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Drupal:在Webform中的提交按钮上方添加免责声明文本

更新时间:2022-10-14 20:51:26

最简单的选择是将文本作为标记表单项使用 hook_form_alter 。 p>

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!

The easiest option is probably is insert the text as a markup form item using hook_form_alter on the form.