PDA

View Full Version : Editing Question


Justinphx
09-20-2015, 02:31 PM
When editing a members post and I type in a reason such as "Corrected spelling error" the post will display that I edited it and the reason why so all the see.

Is there any way/setting that only that member and admin/mods can see that an edit was made and not everyone on the forum?

Thanks
Edit/Delete Message

HM666
09-20-2015, 06:11 PM
I think you would probably need a plugin for that. From what I remember its not a setting in vBulletin itself. I searched through the mods and did not find anything right away. You may want to search the mods on here and see if you can find anything, if not you can request one here: https://vborg.vbsupport.ru/forumdisplay.php?f=112. If no one picks up the request then it would be that its likely something more complicated to make so in the end you might have to hire someone if you are not able to create it yourself.

MarkFL
09-20-2015, 06:34 PM
One thing you could do, is edit your postbit template (it may be "postbit" or "postbit_legacy" depending on which you use), and locate the code:

<vb:if condition="$show['postedited']">

and change it to:

<vb:if condition="$show['postedited'] AND $post['editlink']">

This way, only those who can edit the post will see that it has previously been edited. This will however, not allow other non moderator users to see if the OP has edited the post.