This add-on will add a new link to the thread tools menu (which will be visible to all your mods with move thread permissions)
If you don't have TMS (http://xenforo.com/community/threads/template-modification-system-tms.27973/ ) installed, you need to change the thread_view template after the add-on installation
Search for
add below:
You can define the trash can forum in your acp => options => Basic Board Information" => Trash Can Forum
(didn't find an better option group for this and i hate to create own option groups for only 1 setting )
If you want to support me, and the development of future add-ons, you can donate any value to my paypal account
Github Repository: https://github.com/ragtek/RBF
If you don't have TMS (http://xenforo.com/community/threads/template-modification-system-tms.27973/ ) installed, you need to change the thread_view template after the add-on installation
Search for
Code:
<xen:if is="{$deletedPosts}">
<li><a href="{xen:link threads/show-posts, $thread, 'page={$page}'}" class="MessageLoader" data-messageSelector="#messageList .message.deleted.placeholder">{xen:phrase show_deleted_posts}</a></li>
</xen:if>
add below:
Code:
<xen:if is="{$canMoveThread}">
<li><a href="{xen:link 'threads/recycle', $thread}" class="OverlayTrigger">{xen:phrase ragtek_move_to_recyclebin}</a></li>
</xen:if>
You can define the trash can forum in your acp => options => Basic Board Information" => Trash Can Forum
(didn't find an better option group for this and i hate to create own option groups for only 1 setting )
If you want to support me, and the development of future add-ons, you can donate any value to my paypal account
Github Repository: https://github.com/ragtek/RBF