following up on Andy’s note…
it appears your wp theme socrates is loading a very, very old version of jquery with:
<script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js”></script>
this will conflict with the version of jquery that wp loads…
additionally, the something else is loading a version of jquery from googleapis instead of using the version of jquery ui that comes with wp…
<script type=’text/javascript’ src=’https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js?ver=7496′></script>
it could be the form builder plugin Andy referred to our could be the theme…
Unfortunately, you made the temp account you created for us a wp admin account, but not an sp admin account… could you go to forum – admins – manage admins and add all the sp admin capabilities to this account…
btw, your version of the socrated theme is out of date… newer version are available as displayed on the dashboard… dont know if upgrading would help or not…
So, I went ahead and modified your wp theme to not improperly load js (ref: http://codex.simple-press.com/codex/faq/troubleshooting/what-is-this-jquery-conflict/ and http://codex.wordpress.org/Function_Reference/wp_enqueue_script)… things seem to be working now…
so if you update the socrates theme, you will lose the changes… so briefly, the singular change was in the theme header.php file to change
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
to
<?php wp_enqueue_script( 'jquery' ); ?>
Please check it out and see if everything else is working since the jquery ui is still not right but may not be an issue…