To remove the WYSIWYG open up the template SHOUTBOX and replace the following:
HTML Code:
<if condition="$vboptions['shoutbox_usestandardtextarea'] == 1">
<textarea name="message" rows="15" cols="75" style="width:100%; height:250px" wrap="virtual" tabindex="2"></textarea><else />
$messagearea
</if>
with
HTML Code:
<if condition="$vboptions['shoutbox_usestandardtextarea'] == 1">
<textarea name="message" rows="15" cols="75" style="width:100%; height:250px" wrap="virtual" tabindex="2"></textarea>
<else />
<textarea name="message" rows="15" cols="75" style="width:100%; height:250px" wrap="virtual" tabindex="2"></textarea>
</if>