MyBB Community Forums

Full Version: Need to remove some items from New Thread page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: jKStN.png]
So I'm trying to get rid of the following boxes when a user makes a new thread:
Post Icon, Post Options, Moderation Options, Thread Subscriptions, & Attachments

Can someone tell me?
1. ACP -> Forums & Posts -> Editing the selected department -> Miscellaneous Options -> Unmark Yes, allow post icons to be chosen for posts or template newthread remove {$posticons}
2. Templates newthread -> Deleted
<tr>
<td class="trow1" valign="top"><strong>{$lang->post_options}</strong></td>
<td class="trow1"><span class="smalltext">
<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" tabindex="7"{$postoptionschecked['signature']} /> {$lang->options_sig}</label>
{$disablesmilies}</span></td>
</tr>
3. Templates newthread -> Deleted {$modoptions}
4. Templates newthread -> Deleted {$subscriptionmethod}
5. Templates newthread -> Deleted {$attachbox}
You could also just disable attachments for your regular users and the moderator options will only show for moderators. That way you can still moderate properly and staff can still post attachments.
(2010-02-15, 09:11 AM)virus4 Wrote: [ -> ]1. ACP -> Forums & Posts -> Editing the selected department -> Miscellaneous Options -> Unmark Yes, allow post icons to be chosen for posts or template newthread remove {$posticons}
2. Templates newthread -> Deleted
<tr>
<td class="trow1" valign="top"><strong>{$lang->post_options}</strong></td>
<td class="trow1"><span class="smalltext">
<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" tabindex="7"{$postoptionschecked['signature']} /> {$lang->options_sig}</label>
{$disablesmilies}</span></td>
</tr>
3. Templates newthread -> Deleted {$modoptions}
4. Templates newthread -> Deleted {$subscriptionmethod}
5. Templates newthread -> Deleted {$attachbox}

Thank you so much! Worked like a charm!