Is it possible to remove the "edited x times"? At least when it's done by a moderator.
Is it possible to remove the "edited x times"? At least when it's done by a moderator.
Everything is possible. It's the matter of prioritization and what is not being done in the mean time. What's the user need? On a scale on 1-10, how badly do you need it to function with your forum?
// Edit
If it's a user facing thing you require, you could consider hiding it with some custom CSS :thinking:
It's a problem if something needs to be edited when the edit is private.
I guess I could do opacity:0 on the .btn-see-edits, though the data is still there if the user accidentally clicks.
Any better options, @rafalp?
Humm, could you first explain what you are after or whats the issue with this option being displayed in the UI?
On sidenote, I can also understand where @parox is coming from because spelling something like in the original post reads like a feature request ;)
I accidentally posted in the wrong category. Should have been in "changing look and feel".
There is no general issue. But I want to disable the displaying of the edits in a post. When the post is edited other users shouldn't be able to see what was mistakenly written.
I find it an (small) infringement of my privacy that i'm not able to change what I have written, without people being able to see every version. Especially when i'm moderator.
Is it an option without having to fork? - Or is changing css to opacity 0 the best option for now?
You can use display: none
instead of opacity: 0
to prevent this button from being displayed.
Much appreciated, Rafalp. Thanks.