Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
517 views
in Plugins by
I checked qa-plugin/qa-event-logger.php but could not find the "search" string to get the code where the search event is set.

Could somebody help me please?
Q2A version: 1.5.4

1 Answer

+2 votes
by

Okay, got it:

change line 156 from:

if (qa_opt('event_logger_to_database')) {

to:

if (qa_opt('event_logger_to_database') && $event!='search') {


Then search events will not be written to database :)

by
great........
...