MyBB Community Forums

Full Version: Quick reply reloads page; BBCode editor does not show up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I am creating this new forum, and am currently testing it's functionality. I have come across two annoying problems that I would like to correct before making the forum open for all.
1. Quick reply always reloads the page. I would like quick reply to directly update the thread with the reply, rather than reloading it.
2. The BBCode editor box (Bold/underline/italics/justify etc.) that should show up while creating a new thread or a new reply, does not show up. The smilies on the side are visible, and can be inserted though. I have gone through this thread here: http://community.mybb.com/thread-92784.html but it does not solve my problem. If anyone could go through my site and tell me what should be fixed and how, I'd be grateful.

My site: www.shutterbugsworld.com
Test account: testuser
pass: testing123
None of your javascript is working. Probably because you are using jQuery.
Go to AdminCP > Themes & Templates > Templates > (click your theme) > Ungrouped templates > headerinclude . Locate the line with jquery.min.js in it and below that line add:
<script type="text/javascript">jQuery.noConflict();</script>
^^ Have added the line as you have mentioned. Not seeing any changes though.
It seems you also have jquery twice in your headerinclude. Although that isn't the problem but it's not necessary to load jquery twice.

Cut this:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> 
<script type="text/javascript">jQuery.noConflict();</script>
(notice that I already deleted the second reference to jquery)
and paste it above :
<script type="text/javascript" src="http://www.shutterbugsworld.com/forums/jscripts/general.js?ver=1600"></script>
Bingo.. That was the problem. It seems it was the same problem as was mentioned in the other thread I've mentioned in the first post, after all. It was just that I didn't know scratch about coding and what not. Toungue Thanks a lot Aries-Belgium.
Worked like a charm. Thanks