Implemented Mass leave personal conversations

This suggestion has been implemented. Votes are no longer accepted.
I ran a query on my MySQL database to mark all messages as read... might be a good idea directly after an import. Worked just great for me though - down from 954 unread messages to 0!

Code:
UPDATE `xf_conversation_user` SET is_unread=0 WHERE 1
 
I ran a query on my MySQL database to mark all messages as read... might be a good idea directly after an import. Worked just great for me though - down from 954 unread messages to 0!

Code:
UPDATE `xf_conversation_user` SET is_unread=0 WHERE 1

That doesn't remove the actual red notification number though :(
 
This has been THE most requested feature on one of my sites for those who had hundreds of PC's imported...

I hope this makes it in soon.
 
This has been THE most requested feature on one of my sites for those who had hundreds of PC's imported...

I hope this makes it in soon.

conversation.png

:whistle:
 
Just run that MySQL query on your database, then rebuild the cache. Viola!

Those queries help with the unread counts. I also saw the mass-leave queries which are helpful for a handful of people you may need to do manually. But it's a chore to do for a large amount of people, and important to get into the core.
 
Top Bottom