how to remove "last edited by"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • taydu
    Senior Member
    • Oct 2006
    • 168

    how to remove "last edited by"

    how can i disable this so user won't see that message. Look in admincp but couldn't seem to find it
  • Steve Machol
    Former Customer Support Manager
    • Jul 2000
    • 154488

    #2
    That is a Usergroup setting.
    Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
    Change CKEditor Colors to Match Style (for 4.1.4 and above)

    Steve Machol Photography


    Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.


    Comment

    • richpal
      Senior Member
      • Aug 2006
      • 164
      • 3.6.x

      #3
      Do you mean you want to remove the 'last edited by' any posts edited by admin or by registered users because there is a difference?

      If it's an edit by admin and one of your admin staff has typed in a 'reason for editing' then delete the reason shown in the edit box then click save.

      Comment

      • taydu
        Senior Member
        • Oct 2006
        • 168

        #4
        in registered users

        Show edited by note on edited messages?: OFF

        but they still can see it

        Comment

        • Atwal
          New Member
          • Jul 2006
          • 15
          • 3.6.x

          #5
          ^^That setting only makes it so that they dont leave one when they edit their posts...

          Comment

          • SNN
            Senior Member
            • Jul 2006
            • 856
            • 4.0.0

            #6
            To remove the "Last Edited By" from every post (For every group), it's probably easier to remove it from the template. I've provided codes that I thought would be more useful for admins/mods.

            Find & Remove: (postbit)
            HTML Code:
                    <if condition="$show['postedited']">
                    <!-- edit note -->
                        <div class="smallfont">            <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                            <em>
                            <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
                            <if condition="$post['edit_reason']">$vbphrase[reason]: $post[edit_reason]</if>
                            </em>
                        </div>
                    <!-- / edit note -->
                    </if>
            Or if you are looking for just disabling it for the default members group (Considering you didn't make it where users are in another group that is not groupid 2):
            Replace above with: (postbit)
            HTML Code:
                    <if condition="$show['postedited'] && !is_member_of($bbuserinfo, 2)">
                    <!-- edit note -->
                        <div class="smallfont">            <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                            <em>
                            <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
                            <if condition="$post['edit_reason']">$vbphrase[reason]: $post[edit_reason]</if>
                            </em>
                        </div>
                    <!-- / edit note -->
                    </if>
            Or if you want it for only the Admin & Super Mod groups:
            Find and Replace first code with: (postbit)
            HTML Code:
                    <if condition="$show['postedited'] && is_member_of($bbuserinfo, 6,5)">
                    <!-- edit note -->
                        <div class="smallfont">            <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                            <em>
                            <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
                            <if condition="$post['edit_reason']">$vbphrase[reason]: $post[edit_reason]</if>
                            </em>
                        </div>
                    <!-- / edit note -->
                    </if>
            Last edited by SNN; Fri 14 Dec '07, 5:29pm.

            Comment

            widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
            Working...