MyBB Community Forums

Full Version: Edit in reply box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi ,
When a user reply or make new thread , in the box of editor there aren't "font" "size" etc. option.

Like this :


[Image: 2q80n0h.png]

I have to add? Or is there a option for to enable ?
(sorry for bad english Confused )
jQuery conflict. Provide your board URL and/or headerinclude template.
Url Board Link

Where can I find HeaderInclude?
http://docs.mybb.com/Admin_CP_Templates.html -> Ungrouped Templates

Change:
 <script type="text/javascript">jQuery.noConflict();
jQuery(function($) { $(".close").click(function () {
  $(".avviso").fadeOut("slow");
  }); });</script> <script src="http://code.jquery.com/jquery-latest.js"></script>
to:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(function($) { 
   $(".close").click(function(){
     $(".avviso").fadeOut("slow");
   }); 
});
</script>
in it. Post whole headerinclude template if it still won't work.
Thanks but the problem not solved.

This is the Headerinclude of my theme (TheCure)

Quote:<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/prototype.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
{$stylesheets} <script type="text/javascript">jQuery.noConflict();
jQuery(function($) { $(".close").click(function () {
$(".avviso").fadeOut("slow");
}); });</script> <script src="http://code.jquery.com/jquery-latest.js"></script> {$avvisospiti}
<script type="text/javascript">
<!--
var cookieDomain = "{$mybb->settings['cookiedomain']}";
var cookiePath = "{$mybb->settings['cookiepath']}";
var cookiePrefix = "{$mybb->settings['cookieprefix']}";
var deleteevent_confirm = "{$lang->deleteevent_confirm}";
var removeattach_confirm = "{$lang->removeattach_confirm}";
var loading_text = '{$lang->ajax_loading}';
var saving_changes = '{$lang->saving_changes}';
var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
var my_post_key = "{$mybb->post_code}";
var imagepath = "{$theme['imgdir']}";
// -->
</script>
{$newpmmsg}
Oh, missed one jQuery script at the bottom. Deactivate Dynamic To Top plugin or something similar and retry.
If I deactive Dynamic To Top still do not work ..
These are my actv plug :

Add Spiders
Guest warn
Default Profile
Google SEO
Inferno Shoutbox
Index Top Posters
Message Bar
NewPoints
Side bar for mybb

The problem is in one of there plug?

(2014-06-01, 08:46 PM)Destroy666 Wrote: [ -> ]Oh, missed one jQuery script at the bottom. Deactivate Dynamic To Top plugin or something similar and retry.

UP Undecided
Well, you still haven't edited the headerinclude template to what I told. You have:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(function($) { 
   $(".close").click(function(){
     $(".avviso").fadeOut("slow");
   }); 
});
</script><script src="http://code.jquery.com/jquery-latest.js"></script>
should be:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript">
jQuery(function($) { 
   $(".close").click(function(){
     $(".avviso").fadeOut("slow");
   }); 
});
</script>
without duplicating jQuery library. EDIT: Also added one other small modification now.

Also provide a test account with newthread.php access in case it still doesn't work with the correct change.
Now its perfect. Thank you !!
I have another small problem : I have write 4 announce , but in the forum they see only 2.
If I try to add another announce that don't seen.
Please create a new topic for other problem not connected to this. Also would be nice if you mark your thread as solved and choose the best reply which nailed your issue next time.