MyBB Community Forums

Full Version: Editor theme isn't working and can't delete user's rep
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My forum http://nerdchat.net

I can't bold text or align text when making a thread or replying.

And I get an error when I try to delete a user's rep.

Help Plesse
Someone please reply and help me.
Could you please show us the error that appears when you try to delete somebody's reputation?
You are suffering jQuery conflict. Even your expand-collapse doesn't work.
Try to fix that and the issue might be resolved.

In your headerinclude find the line:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

Change it to:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
    document.write(unescape("%3Cscript src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript">jQuery.noConflict();</script>

(Pointed to latest library, added fallback, controlled conflict)
Thanks a bunch effone your the best Toungue