MyBB Community Forums

Full Version: Editor Text Box Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.
I have a problem with my text box editor.
All icones and taggs desapear.
I just have the box and the icones smiles ahead.

Today I upgrade 2 plugins (they are facebook Like, and google translater Box). after this I get this problem

You can check, and try in my forum

in this link http://www.pt-forum.com/forum/newthread.php?fid=75
make the login was mybb_tester with the pass 123456,

to try make new reply and see the problem.
jQuery is conflicting with the MyBB JavaScript - http://api.jquery.com/jQuery.noConflict/
and wath I can I do to resolve the problem?
because I just deactivate the plugin and tre problem persist
The plugin doesn't remove the template changes on deactivate, apparently. You need to remove jQuery from the templates manually:

1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Ungrouped Templates > headerinclude.

2. Find and remove:

<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://www.pt-forum.com/forum/jscripts/jquery.translate-1.4.7.js"></script>
Thanks faviouz. the problem are solved. now btw, because of this I cannot use this plugin?
You can, but it needs to use noConflict() in the code so it doesn't break MyBB's JavaScripts.

Which plugin was it?
Ok, I think you can easily make this work. Otherwise you will need to contact the author.

1. Deactivate the plugin.

2. Open /inc/plugins/gootransbar.php

2. In line 113, find:

$(document).ready(function(){

3. Replace with:

jQuery.noConflict();
jQuery(document).ready(function($){

4. Save the file.

5. Re-activate the plugin.
Faviouz, the problem persist, when I try activate again. I will go try with the author

thanks anyway