@FishingWithNets @josephine59 and anyone else following this post.
In v1.1.1 of the Facebook plugin we've added a page to paste the IDs and search for them.
You can then decide to delete the FB data (facebook data and facebook conversations) or delete the whole contact.
[image: 1744218758753-b0b87718-e11c-416c-b209-b34db2937ce7-image.png]
Here is some quick code that can be run on the database to remove the duplicates:
@todo replace wp_16 with the correct prefix
DELETE c1
FROM wp_16_comments c1
JOIN wp_16_comments c2
ON c1.comment_post_ID = c2.comment_post_ID
AND c1.comment_content = c2.comment_content
AND c1.comment_ID > c2.comment_ID;
@Corsac Yes, the layout is pretty different, so it makes using the given instructions confusing as you need to do some things out of order to the instructions.