MyBB Community Forums

Full Version: Post icons missing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Uh hai, my new thread and replies don't show any post icons/options:
Any ideas?

[Image: KNsRK.png]
Not sure if this will help but these are the possible solutions I'm aware of.

1) Change editor style from default to office 2007.
2) Enable Clickable MyCode Editor in ACP.
3) Reupload jscripts_themes folder.
4) Add {codebuttons} after <textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea> in newthread and newreply template.
5) Find updated templates and revert to original.
6) Reupload codebuttons folder to .images and .images/theme
7) If you are using Cloudflare, then make sure you are using javascript which means you have disabled rocketmail in CF.

Good Luck!

EDITED!

Sorry, I didn't see that the thread was for mybb community. I thought that this problem was occurring on your own website. My bad lol
It is occuring on my own site, just those images in the screenshot aren't appearing xD
Oh OK then try the 7 options I gave you above. But since you already have the post toolbox I would recommend you to try option 6 first.
You've jQuery in templates that's why its causing conflicting issues. Add the following code in your headerinclude template;
<script type="text/javascript">jQuery.noConflict();</script>

Also in the same template, remove one set of;
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
Ahh thank you, that solved it!