XF 1.3 Disable spoiler

Luis

Well-known member
How I can disable the spoiler or alternatively use a conditional statement so that only certain usergroups can use it.

Thanks, Luis.
 
You can remove it from the editor toolbar using this hack:

js/xenforo/full/bb_code_edit.js

line #351

Code:
						/*spoiler:
						{
							title: this.getText('spoiler'),
							callback: $.context(this, 'getSpoilerModal'),
							className: 'icon spoiler'
						},*/

You will want to enable debug mode and select "Use uncompressed files from js/xenforo/full/" in the Debug Options page.
 
Top Bottom