Answer the question
In order to leave comments, you need to log in
Can't find the specified shape key?
The site is on ModX, all pages are loaded at once and scrolled through as in a slider - this is how the site is made. Several pages use ajaxForm and the following error occurs on submit:
Cannot find the specified form key
Answer the question
In order to leave comments, you need to log in
Thanks everyone for the helpful advice. The problem in the end was different: the form was connected using markup, bypassing ModX.
AjaxForm is just a wrapper for Formit, look at the last submitVar value, it must be set.
photosho , form submit buttons also need a name attribute equal to submitVar in Formit (AjaxForm).
<form method="post" action="" id="form-1">
.......
<input type="submit" name="form1" class="btn" value="Отправить" />
.............
</form>
<form method="post" action="" id="form-2">
.......
<input type="submit" name="form2" class="btn" value="Отправить" />
.............
</form>
<input type="submit">
use <button type="submit">Отправить</button>
, then you can add a hidden field in the form:<input type="hidden" name="form3" value="1" />
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question