RasmusWebitall
Member
Posted 2 years ago #
I have this problem on multiple wordpress-sites.
In this wordpress http://demo.wp.w1a.dk/bestilling/ there should a checkbox after the word 'testd' in the bottom, but there is not - only empty
span's in the source.
I add them by copying the generated code from the dropbox-wizard, also tried directly into the HTML.
What could be wrong?
How have you set in the Form field? What should be there in the checkbox?
RasmusWebitall
Member
Posted 2 years ago #
This is the formular code:
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Dit navn (påkrævet)</td>
<td> </td>
<td>[text* your-name] </td>
</tr>
<tr>
<td>Din e-mail (påkrævet)</td>
<td> </td>
<td>[email* your-email] </td>
</tr>
<tr>
<td>Emne</td>
<td> </td>
<td>[text your-subject] </td>
</tr>
<tr>
<td valign="top">Din besked</td>
<td> </td>
<td>[textarea your-message] </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>Kundetæller: [checkbox Kundetaeller]</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>[submit "Send"]</td>
</tr>
</table>
I also included [Kundetaeller] in Message
The source for the "Kundetæller" cell looks like this:
<td>Kundetæller: <span class="wpcf7-form-control-wrap Kundetaeller"><span class="wpcf7-checkbox"></span></span></td>
It's not surprising. Because the checkbox tag has no option.
<td>Kundetæller: [checkbox Kundetaeller]</td>
Read this first and learn how to use [checkbox] tags
http://contactform7.com/2009/11/20/checkboxes-radio-buttons-and-menus/
RasmusWebitall
Member
Posted 2 years ago #