"All Post Contact Form" automatically sends everything I want to POST, so I can freely and easily edit the form page, which is very useful. I am able to copy and paste forms from other companies that I like and use them for my site, which is very helpful, but yesterday when I tried to create a validation using my own javascript, there were some things that were not being picked up. What is the problem ( what can't be picked up by "All Post Contact Form" )?
This field includes
on the right side of name=.
If the field includes
on the right side of name=., "All Post Contact Form" will fail to obtain the right side of value=.
Let us give you specific information.
▼Your current html-form-code
<label class="formitem-consent-label" for="consent">I agree to your privacy policy</label>
<input class="formitem-consent-input" type="checkbox" id="consent" name="consent[]" value="Yes">
</div>
If you'd like to show on the Confirmation-Window, Submission-Window, and email-body like this:
, please change it as follows:
▼html-form-code after change
<label class="formitem-consent-label" for="consent">I agree to your privacy policy</label>
<input class="formitem-consent-input" type="checkbox" id="consent" name="I agree to your privacy policy" value="Yes">
</div>
Then, please change the javascript to match the above html-form-code.
( 2024/April/25, 14:42:30, JST )