MyBB Community Forums

Full Version: what the name of this plugin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
can someone tell me the name off this plugin ive search for a while now

[Image: unled2qc.jpg]

thanks
It's not a plugin, it's a core feature. It's called the editor.

If you don't have it, then you either didn't the tick the option in your User CP, have JavaScript disabled or there's a conflict between Prototype and another JavaScript library.
what option in usercp

how do i enable javascript
I don't think it's either of those. What's your forum URL?
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Ungrouped Templates > headerinclude.

2. Find:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> 
<script src="http://www.google.com/jsapi" type="text/javascript"></script><script type="text/javascript">google.load('jquery', '1.3.2');</script><script type="text/javascript" src="http://buzzboz.com/jscripts/jquery.translate-1.4.7.js"></script><script src="http://www.google.com/jsapi" type="text/javascript"></script><script type="text/javascript">google.load('jquery', '1.3.2');</script>

3. Replace with:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
u did it your a genious
it also fixed my post decorator nice 1 mate rep on way
You should check my post again, I edited it a little bit after I posted. Toungue It uses the minified jQuery file which is smaller and will load much faster.
im noy sure what i edited last time as you changed it
Find:

<script type="text/javascript" src="{$mybb->settings['bburl']}./jscripts/jquery-1.6.2.js"></script>

Change to:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
Pages: 1 2