If this http://expatual.com/contact-2/ is one of the pages then your form isn't working becuase of javascript errors preventing the Gravity Forms scripts from revealing your form. I believe the javascript errors are being caused by multiple versions of jQuery being loaded one of which is very old. If you view the source of that page on line 24 you will see the following which is correctly including the WordPress bundled version of jQuery 1.8.3
<script type='text/javascript' src='http://expatual.com/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script>
then on line 36 you will find the following which is including the very out of date jQuery 1.2.6 from the Google CDN
<script src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js" type="text/javascript"></script>
It is this second copy which is causing the problems and needs to be removed, I am guessing it is your theme's header.php file or functions.php file which is including this.
If you require assistance removing the second jQuery call please copy the contents of those files sperately to http://www.pastie.org/ or http://pastebin.com/ and paste the links here, I will look them over and let you know which line of code is safe to remove.
Regards,
Richard
Posted 11 years ago on Saturday June 1, 2013 |
Permalink