25-09-2011, 01:33 AM
How to add spoiler tags to your forum [MyBB 1.4 / 1.6 / 1.6.4]
A really easy way to add [spoiler] tags to your forum.
1) Go to your Admin CP > Configuration > MyCode > Add new MyCode
Title: Spoiler
Short Description: Spoiler
Regular Expression:Replacement: Enabled: Yes
You could add the replacement to your CSS file and link it that way but this is the easy way.
Result: [spoiler]This is a spoiler[/spoiler]
A really easy way to add [spoiler] tags to your forum.
1) Go to your Admin CP > Configuration > MyCode > Add new MyCode
Title: Spoiler
Short Description: Spoiler
Regular Expression:
Code:
\[spoiler\](.*?)\[/spoiler\]
Code:
<div style="margin:20px; margin-top:5px"><div class="quotetitle"><input class="button2 btnlite" type="button" value="View Spoiler" style="text-align:center;width:115px;margin:0px;padding:0px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = 'Hide Spoiler'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'View Spoiler'; }" /></div><div class="quotecontent"><div style="display: none;">$1</div></div></div>
You could add the replacement to your CSS file and link it that way but this is the easy way.
Result: [spoiler]This is a spoiler[/spoiler]