you still have fundamental errors on your site that need resolving… you are still attempting to use the combined css and scripts caching… but since its inaccessible to the simple press via web user, it wont work…
“NetworkError: 404 Not Found – http://insacredbalance.com/wp-content/sp-resources/forum-cache/sp-plugin-scripts-header.js?ver=24”
you might ask your host why that file does not exist.. it indicates simple press cannot see it or create it… because of permissions… or as mentioned earlier, disable that caching…
you also have a wp theme or plugin doing nonstandard things and violating wp desires… its loading its own jquery and jquery ui instead of the versions that come with wp…
<script type=’text/javascript’ src=’//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js’></script>
<script type=’text/javascript’ src=’//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js’></script>
that will cause issues with plugins like simple pres that expect the wp versions of those libraries to be present…
so first step is fix the incorrect loading of jquery libraries… if you can find where loaded, we can help correct…