MyBB Community Forums

Full Version: BB Codes not visible
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
It'll probably be jQuery breaking it, hadn't seen that before; no other javascript works either.

Add this to your headerinclude template, it's in the Ungrouped Templates:

<script type="text/javascript">
jQuery.noConflict();
</script>
(2010-04-09, 01:06 PM)Tweep Cat Wrote: [ -> ]You might be missing some code from the templates of the theme you're using.

I tried using another theme and the problem persists!
And did you try what I suggested...??
(2010-04-09, 06:10 PM)MattRogowski Wrote: [ -> ]And did you try what I suggested...??

Yup!
Added it at the start of headerinclude, still, no results! Sad
Sorry, should have said it needs to be after jQuery has been included, put it right at the bottom.
Try clearing your cache... :p
Added it at the bottom and it works like a gem now!
Thanks a lot!
Cool. Basically you have two different javascript libraries, prototype that comes with MyBB, and jQuery. They both use $ but they can't both use it at the same time, so adding that code tells jQuery to work a bit differently so they can both work.
Ohh....Getting it now!
Thanks a ton for the support. Much appreciated! Smile
Pages: 1 2