Hi Charlie,
It is difficult to say for sure why your forms failed to appear on the front end without seeing it in that state, however there are couple of issues you should also investigate which are probably down to how your theme is constructed.
You are loading two copies of jQuery the first I presume by your theme is version 1.7.2 from Google, the second and correct version is the copy included with wordpress 1.8.3 and is most likely being loaded by a plugin such as Gravity Forms. Loading multiple versions of jQuery is bad and can cause numerous problems.
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
For some reason a number of stylesheets are being loaded in the footer, stylesheets always belong in the header, there are also some javascript files being loaded in the footer but depending on the script they usually can be loaded in the footer.
There is also a javascript error being reported
Uncaught TypeError: Object [object Object] has no method 'tipsy'
You should probably test for a theme/plugin conflict by following the advice at http://rkt.gs/testing
Regards,
Richard
--
Just another member of the community helping out where I can
Posted 11 years ago on Wednesday May 15, 2013 |
Permalink