@corpdisk like David says both those forms are visible, that said I did take a look at your page's source code and have spotted an issue which will cause a form that uses conditional logic not to appear. You are loading jQuery twice, the correct version (1.8.3 for WordPress 3.5.1) is being loaded by the WordPress enqueue system in the page header but then down in your footer you are loading an old version from the Google CDN
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
This second call should be removed as it not advisable to load multiple copies of a script like jQuery, and scripts like jQuery should always be included using the WordPress enqueue system to ensure that both themes and plugins only ever include them once on a page.
Regards,
Richard
Posted 11 years ago on Tuesday June 18, 2013 |
Permalink