Quantcast
Channel: Piwik Forums - Support & Bugs
Viewing all articles
Browse latest Browse all 4243

SiteSearch for multiple category / criteria searches possible? (7 replies)

$
0
0
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
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)

Viewing all articles
Browse latest Browse all 4243

Trending Articles