Well let’s see if we can get you up and working first.
I have never seen anything quite like this! Usually it is because jQuery is being abused and loaded incorrectly. This time I can’t find it at al! And NONE of the forum scripts are being loaded either.
Try this first: Forum admin > Integration – turn off the option to load javascript in the footer.
If that doesn’t do anything you need to check that your theme has the mandatory call to wp_head() in the header and wp_footer() in the footer. These are usually in the header.php and footer,php templates. Actually you should check these anyway.
lastly some code is being loaded that IS causing an error but you will need to find it I am afraid. It is this:
<script type="text/javascript">
/* slider */
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade', /* choose your transition type, ex: fade, scrollUp, shuffle,scrollLeft, etc...*/
next: '#next_navigation',
prev: '#prev_navigation',
timeout: 12000,
pause: 1
});
});
</script>
This is just plain wrong. You see the two $ usages? These should both be replaced with the word jQuery for Wp to function properly. This is not working now (slider?) whatever it is because it is throwing an error and stopping.
I’ll be closing down in about 5 minutes for the night but will be back in the morning,