MyBB Community Forums

Full Version: Deletion Options
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to remove the following:

- Delete posts from inline post moderation driopdown
- Delete thread/delete selective posts from moderation options dropdown

^ From showthead and member profiles (find all posts/threads)
The button on postbit should not remain.

I hope there is a quick way, thanks.
To delete the 'Delete Posts' option from the inline moderation dropdown:

Navigate to AdminCP -> Templates & Style -> Templates -> Your Theme's Templates -> Show Thread Templates -> showthread_inlinemoderation

Find & Remove:
<option value="multideleteposts">{$lang->inline_delete_posts}</option>

To delete the 'Delete Thread' and the 'Delete Posts' options from the Moderation Options:

Navigate to AdminCP -> Templates & Style -> Templates -> Your Theme's Templates -> Show Thread Templates -> showthread_moderationoptions

Find & Remove:
<option value="deletethread">{$lang->delete_thread}</option>

Find & Remove:
<option value="deleteposts">{$lang->delete_posts}</option>

To remove the 'Find' button from the postbit:

Navigate to AdminCP -> Templates & Style -> Templates -> Your Theme's Templates -> Post Bit Templates -> postbit (repeat for postbit_classic)

Find & Remove:
{$post['button_find']}

To remove the '(Find All Threads — Find All Posts)' from the member's profile:

Navigate to AdminCP -> Templates & Style -> Templates -> Your Theme's Templates -> Member Templates -> member_profile

Find & Remove:
<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a> &mdash; <a href="search.php?action=finduser&amp;uid={$uid}">{$lang->find_posts}</a>)</span>