I noticed some toxic keywords were searched in my forum. Is there a way to find who searched them?
You could check the search_logs
table. You could use this query in the Data explorer plugin:
-- [params]
-- string :word = my_word
SELECT * from search_logs where term = :word
For example, in my site I wanted to know who searched for the word rainbow
:
1 Like
Ty, also for ppl who didn’t install data explorer, access database directly like:
and run
also works.
2 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.