PDA

View Full Version : Disable smilies in text (automatic tick)


MrAd
07-03-2010, 09:46 PM
How can I automatically tick "Disable smilies in text" in new threads or replies ?

Thank you

BirdOPrey5
07-05-2010, 04:03 AM
this was a damned elusive one to find... but...

Go to edit templates... edit: newpost_disablesmiliesoption
In that code add checked="checked" to the input field and it will be auto checked everywhere it appears. Remove the code: $checked[disablesmilies]

It seems like there may have been an option for this somewhere in vbulletin options but I have no idea where... this will override that.(if it exists)

Example. change:
<input type="checkbox" name="disablesmilies" value="1" id="cb_disablesmilies" tabindex="1" $checked[disablesmilies] />
to
<input type="checkbox" name="disablesmilies" value="1" id="cb_disablesmilies" tabindex="1" checked="checked" />