XF 1.3 How to prevent displaying deleted posts for admins ?

Hello there

I have a problem : we just imported our huge forum (more than 3M posts) on Xenforo and before each topic for admins, the "soft deleted" posts are displayed on a huge list like this, before the "real" topic actually begins.

http://cl.ly/image/0X3N3O07253T

Of course, I have to scroll for decades before accessing to the content of the topic, that's pretty annoying.

How can we prevent this from being displayed ? Or is there a way to display them in the "logical" order of the thread - by date I guess ? Or did we miss something in my import ?

Thanks ! (cc @Asdine my lead dev on this)
 
Last edited:
We don't use any importer. We currently have a custom forum and we wrote a script to import our old data into Xf.

The thing is in our script we set the column "message_state" of the table "xf_post" at either "visible" or "deleted".

The "post_date" of all the posts is the correct timestamp translation of our current forum's post dates.

The "position" and "last_edit_date" columns are left to 0.
 
The problem is with your custom script then as every post needs a position value to enable it to be displayed in the correct position.
 
Top Bottom