MyBB Community Forums

Full Version: MyCode editor not showing up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi. I have just recently noticed the MyCode editor of my forums is not showing up. The smilies column on the left is visible, but not clickable. As for MyCode, not visible at all. The settings have been toggled on though.

My MyBB version is 1.6.10.

Is this due to any plugins or themes I installed or missing packages on my VPS? Thanks in advance!
Sounds like a jQuery Conflict.

Have you added this after the jQuery library inclusion line in headerinclude?
<script type="text/javascript">jQuery.noConflict();</script>

Site url?
http://geekstep.cu.cc

Thank you I'll try that.
As expected, thats a conflict. Your Thead collapse / expand buttons are not working either.

Add that given code just after this line in your headerinclude template:

<script src="http://code.jquery.com/jquery-latest.js"></script>

Also, pointing to the latest library is not a good idea IMO, as it can stop functionality of any applied old jQ plugin in a latest release.
(2013-07-09, 10:49 AM)effone Wrote: [ -> ]As expected, thats a conflict. Your Thead collapse / expand buttons are not working either.

Add that given code just after this line in your headerinclude template:

<script src="http://code.jquery.com/jquery-latest.js"></script>

Also, pointing to the latest library is not a good idea IMO, as it can stop functionality of any applied old jQ plugin in a latest release.

I've added it already and everything works fine now. Thank you.

Just to be sure, the problem was the latest library?
No, it was not for the latest library.
It was a conflict between jQuery and prototype which can be bypassed as per the mentioned method.