强制字段验证不在WordPress联系表单7中的占位符的文本输入字段上工作

时间:2014-10-21 14:15:22

标签: wordpress validation placeholder contact-form-7

我在我的表单中添加了一个文本字段,其中有一个占位符,也是根据需要设置的,但是在提交时它没有验证是否为空字段

bellow是该文本字段的代码

<td width="38%" class="f_name1" >
  [text* firstname placeholder class:text_field "First Name" ]
</td>

当我删除占位符选项时,验证工作正常但是使用占位符选项它没有验证...

我是否按照错误的路径添加占位符? 任何有任何建议的人都会对我有所帮助..

2 个答案:

答案 0 :(得分:3)

您可能应该更改顺序,以便占位符文本位于占位符旁边。

  [text* firstname class:text_field placeholder "First Name"]

正如文档中所述:http://contactform7.com/setting-placeholder-text/ 并且您需要联系表格7 3.4及更高版本。

答案 1 :(得分:0)

您是否首先尝试文档中的确切语法:

[text firstname placeholder "First Name"]

如果成功,则添加该类:

[text firstname placeholder "First Name" class:text_field]

正如文档http://contactform7.com/setting-placeholder-text/中所述,您需要联系表格7 3.4或更高版本。