On an import that I have done I have noticed that some posts were duplicated, the full post was imported correctly but another post with just the first post was also imported. Is there a way to delete these posts that were duplicated and had no replies from the back end?
How did you import them? Import scripts create a post custom field with the import id. But if it’s not too late, you’d be best off just deleting the database and running the import again.
You can delete the topics with something like
t=Topic.find(123).first
t.destroy
You’d want to do something more clever to find the topics.