我最近使用wordpress建立网站。
但是访客发现表格无法发送。当我在wordpress控制台上检查问题时,控制台(workpress表单)指示错误:“在此选项卡面板中检测到1个配置错误”。
我已经检查了所有代码,并且所有括号都存在。我附上下面的代码。有人能弄清楚我在做什么错吗?
<label> Name (required)
[text* your-name-chi] </label>
<label> Nickname (required)
[text* your-name-eng] </label>
<label> Sex
[select* sex include_blank "M" "F"] </label>
<label> Born Date
[date* born-date] e.g: 1982-01-17</label>
<label> Your Email (required)
[email* your-email] </label>
<label> Contact Phone Number (required)
[tel* mobile] </label>
<label> Phone Number ICOE (required)
[tel* tel-urgent] </label>
<label> Address
[text address] </label>
<label> School Studying
[text school] </label>
<label> New/Old
[select* new_old include_blank "New" "Old"] </label>
<label> Class Type (required)
[select* swimtype include_blank "A" "B" "C" "D" "E" "F" "G"] </label>
<label> Class Starting Date
[date startdate] e.g: 2017-01-17 </label>
<label> Time(Hour preferred)
[select startdatetime-1 include_blank "8" "9" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" ] </label>
<label> Time(Minute preferred)
[select startdatetime-1-min include_blank "00" "05" "10" "15" "20" "25" "30" "35" "40" "45" "50" "55" "60"]
</label>
<label> Time(Hour - Second priority)
[select startdatetime-2 include_blank "8" "9" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" ] </label>
<label> Time(Minute - Second priority)
[select startdatetime-2-min include_blank "00" "05" "10" "15" "20" "25" "30" "35" "40" "45" "50" "55" "60"]
</label>
<label> On week (Preferred)
[select week-1 include_blank "Mon" "Tue" "Wed" "Thr" "Fri" "Sat" "Sun"]</label>
<label> On week (Second priority)
[select week-2 include_blank "Mon" "Tue" "Wed" "Thr" "Fri" "Sat" "Sun"] </label>
<label> Class Location (required)
[select* swimpool include_blank "A" "B" "C" "D" "E" "F" "G" "H" "I" "J" "K" "M" "N" "O"] </label>
<label> Where did you got the information of this course
[select* adv include_blank "Facebook" "Leaflets "Online Search Engine" "Recommendations"] </label>
<label> Introducer (if any)
[text recom] </label>
<label> Others
[textarea your-message] </label>
<label>
I agree with all the conditions [checkbox* agreement "Yes" "No"]</label>
<label> [submit "Send"] </label>
答案 0 :(得分:1)
请勿在“标签”标签下使用[复选框]。
更改您的最后几个代码:-
<label>
I agree with all the conditions</label> [checkbox* agreement "Yes" "No"]
[submit "Send"]