MyBB Community Forums

Full Version: Remove edited by?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I remove this, at least for administrators?

(This post was last modified: Today 05:05 PM by Admin.)
AdminCP -> template and styles -> templates -> <your theme template set> -> postbit templates > postbit and remove

<span id="edited_by_{$post['pid']}">{$post['editedmsg']}</span> 

and in postbit_classic remove

<div id="edited_by_{$post['pid']}">{$post['editedmsg']}</div>
EDIT: Sorry, I misread the thread title. Johnny S has your answer.
(2013-04-11, 09:21 PM)Johnny S Wrote: [ -> ]AdminCP -> template and styles -> templates -> <your theme template set> -> postbit templates > postbit and remove

<span id="edited_by_{$post['pid']}">{$post['editedmsg']}</span> 

and in postbit_classic remove

<div id="edited_by_{$post['pid']}">{$post['editedmsg']}</div>

Thank you! Your suggestion was spot on!