Search in private conversations?

Spenser

Active member
Hi!

I tried to search in my private conversations but I wasn't able to find such an option. Have I overlooked something?
 
I haven't seen an addon for this. If you just want to do a one-time search then you can use a query:

Code:
SELECT *
FROM xf_conversation_message
WHERE message LIKE '%KEYWORD%'

That will find the conversation_id which you can put into a URL to load that conversation (if you are a participant).
 
Top Bottom