I'm trying to display relationship field "members" from selected "events" if their "field" value matches a certain "query":
{ev_members status="open|other"}
{if get:f}
{if ev_members:{get:f} *= '{get:q}'}
{ev_members:entry_id}|
{/if}
{if:else}
{ev_members:entry_id}|
{/if}
{/ev_members}
I'm using URL querys so, {get:f} is the field searched on and {get:q} is the query
e.g.
{if ev_members:organisation_name *= 'Oxford|Cambridge|Oxbridge'}
I've tried pipes, commas, spaces, and encoded pipes, commas and spaces, but nothing works. this works fine if using a single value though.
I saw another thread with a very similar issue, but the solution was an addon for an earlier vers of expressionengine, so won't work here unfortunately.
thanks