MyBB Community Forums

Full Version: Disable "The message is missing. Please enter a message" function
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So this comes up when someone tries submitting a blank thread. Is there anyway to disable it?

[Image: W4jxoev.png]

I want to allow people to submit threads without a message.
Try XThreads. You can set that as an option.
(2014-05-19, 04:16 PM)Leefish Wrote: [ -> ]Try XThreads. You can set that as an option.

There is no way to go in and remove some code and do it without xthreads?

Is it possible to use some php code or something to simply hide this code:
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>
Try editing the newthread.php - perhaps use patches plugin to do it.
(2014-05-19, 04:40 PM)Leefish Wrote: [ -> ]Try editing the newthread.php - perhaps use patches plugin to do it.

Thanks. I've been messing around with it.

I was able to shrink it down using this code.

<textarea name="message" id="message" style="width: 0%;" style="height: 0%;">{$message}</textarea>

[Image: xbQJwIp.png]

If only MYBB didn't come with this function in place. Or at least a way to disable it.

I figured it out. I did this:
<textarea name="message" id="message" style="display:none">{$message}g</textarea>