We are trying to track usage of a library search application with Piwik. In the search interface users are able to combine multiple criteria in one search.
E.g. title = history AND author = Miller AND year = 1980 => 2234 hits
At the moment the only way I found to send this to Piwik is by issuing 3 Searches like
Is there a way to submit this information correctly as one single Search resulting in 2234 hits? (We can skip analysing the boolean operators)
E.g. title = history AND author = Miller AND year = 1980 => 2234 hits
At the moment the only way I found to send this to Piwik is by issuing 3 Searches like
piwikTracker.trackSiteSearch('history', 'title', 2234); piwikTracker.trackSiteSearch('Miller', 'author', 2234); piwikTracker.trackSiteSearch('1980', 'year', 2234);
Is there a way to submit this information correctly as one single Search resulting in 2234 hits? (We can skip analysing the boolean operators)