Support Forum
It usually (I stress usually) points to a javascript conflict in your site - your wp theme or another plugin - which needs to be fixed. This codex article explains what this means and what to look for:
http://codex.simple-press.com/.....-conflict/
If you give us a link to your forum page we can take a brief look however.
YELLOW
SWORDFISH
|
Yes - as I suspected. Your WP theme is breaking the WordPress rules as outlined in the article I linked to above. Not only are they force loading their own jQuery library but it is also a woefully out of date version (1.4 as opposed to the proper 1.7).
I think you will find if you can correct this then things will work as expected.
YELLOW
SWORDFISH
|
Hi, the theme author says there will be no further updates. Is there another way I can work around this. The simple:press forums are working great apart from the polls...this is the bit i really need as it is to allow users to vote on bands that apply for our charity music festival.
Well yes that IS better but I am afraid it is still not actually correct! Scripts in WP should not really be loaded using the script tag at all.
What you should do is remove that line of code completely from the header.php then open up the themes functions.php and add this:
add_action('wp_enqueue_scripts', 'load_script', 1); function load_script() { wp_enqueue_script('jquery'); }
You can change the function name of course.
YELLOW
SWORDFISH
|
1 Guest(s)