For my part, on the test site, there is no buddypress...
The form appears under the "old" one because of this line (form_display.php:611):
"jQuery('#gform_{$form_id}').append(contents);" .
The script check for "is_redirect" :
"var is_redirect = contents.indexOf('gformRedirect(){') >= 0;".
and then make the content append instead of replacing it like it should, perhaps using this:
"jQuery('#gform_wrapper_{$form_id}').replaceWith(contents);" .
The jQuery error is that jQuery isn't enqueue in the response.
With all this clues, I think your development team should be able to fix the problem
Posted 11 years ago on Saturday December 22, 2012 |
Permalink