MyBB Community Forums

Full Version: Posting in Normal Mode default option
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Change posting mode to Normal, rather than Advanced by default.

I think this would help some of my members who don't understand tags.
This has been mentioned before, if you wanna fix it at once.
Do this;
go to jscripts/codebuttons.js
find:
	if(theMode == "normal") {
		document.input.mode[0].checked = true;
		document.input.mode[1].checked = false;
		normalmode = true;
	} else {
		document.input.mode[1].checked = true;
		document.input.mode[0].checked = false;
		normalmode = false;
	}
replace with:
	if(theMode == "advanced") {
		document.input.mode[1].checked = true;
		document.input.mode[0].checked = false;
		normalmode = false;
	} else {
		document.input.mode[0].checked = true;
		document.input.mode[1].checked = false;
		normalmode = true;
	}
Great, Thanks