There is a JavaScript error on the page:
You are including jQuery 1.9.0 with this script tag:
And then later in the page, 1.7.1 with this tag:
and then 1.8.3 coming from WordPress directly:
And finally, 1.5.1 later in the page:
That's 4 jQuery versions. You should only have one. It should be enqueued by WordPress and should be version 1.8.3 in the head of the page. Get rid of all the other ones, then make sure all your other scripts continue to work, because many of those other scripts (coming from either the theme itself or plugins) are adding in their own jQuery the wrong way. If you let WordPress enqueue the 1.8.3 jQuery correctly, you may need to change these other scripts or plugins to do things correctly as well.
For example, this code may throw an error ("$ is not a function") in WordPress:
You will have to get your jQuery version straightened out then we can see if your form displays properly, or if there are other JavaScript errors preventing your form from working correctly.
Posted 12 years ago on Thursday January 17, 2013 |
Permalink