phpbb3 BBCode Problem

MrJohn

Seasoned Veteran
Joined
Oct 21, 2008
Messages
4,102
Reaction score
32
FP$
16,476
Is there a way to make it to where users don't have to uncheck the "Disable BBCode" box in their signature settings? It is automatically checked by default for some reason.
 
I am pretty sure it is a template edit, lemme look for it real fast 🙂

EDIT: Find:
Code:
<!-- IF S_BBCODE_ALLOWED -->
Select all the code between <!-- IF S_BBCODE_ALLOWED --> and <!-- ENDIF -->, it should be tiny. Replace it all with:
Code:
<!-- IF S_BBCODE_ALLOWED -->
			<div><label for="disable_bbcode"><input type="checkbox" name="disable_bbcode" id="disable_bbcode"{S_BBCODE_CHECKED} /> {L_DISABLE_BBCODE}</label></div>
		<!-- ENDIF -->

Template: UCP_profile_signature.html
 
Back
Top Bottom