Hello,
tried to perform an elastic search with the new version on multiple tags and it turns out that the string was formed incorrectly.
Using
<input name ="tinhte_xentag_tags_text" balbal /> in the template
tags are "tag1,tag2"
query was like "tag1 tag2" when it should be ["tag1","tag2"]
had to edit
XenTag/Integration.php and remove the implode
return array('metadata' => array(
Tinhte_XenTag_Constants::SEARCH_METADATA_TAGS,
Tinhte_XenTag_Helper::getSafeTagsTextArrayForSearch($constraintInfo),
));
Not sure if I am doing something wrong?