MyBB Community Forums

Full Version: Edit, Delete and Restore button problems
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! I hadn't updated my forum since version 1.8.27 and I did this a few days ago.

Everything ok, but today I noticed that the Restore button is appearing in all topics and posts.

When you click on Delete or Restore you go to edit mode!

Does anyone know what could be causing this?
Make sure you have these style declarations available in your global.css or else add it:
.post:not(.deleted_post) .postbit_qrestore,
.post:not(.deleted_post) .status_type,
.post.deleted_post .postbit_mirage {
    display: none;
}
(2024-04-10, 08:20 PM)effone Wrote: [ -> ]Make sure you have these style declarations available in your global.css or else add it:
.post:not(.deleted_post) .postbit_qrestore,
.post:not(.deleted_post) .status_type,
.post.deleted_post .postbit_mirage {
    display: none;
}

Thanks, your code not worked for me, but this:
.postbit_qrestore,
.status_type{
	display:none!important;
}

.deleted_post .postbit_qrestore,
.deleted_post .status_type{
	display:inline!important;
}

.deleted_post .postbit_mirage{
	display:none!important;
}


BUT

The problem that when you click on Delete you go to edit mode continues!
Do you know how to solve it?

I managed to solve it!

I don't know what caused the problem to be corrected, but after applying the changes to the templates that underwent changes with the forum update, the problem was corrected!