Is it possible to search 2 channel fields using 1 form field?
Lets say I have two channel fields,
'foo' and 'bar'
foo has entries 'entry 1' and 'entry 2'
bar has entries 'entry 3' and 'entry 4'
and have this form field in low search form
<select>
<option value="entry 1">Entry 1</option>
<option value="entry 2">Entry 2</option>
<option value="entry 3">Entry 3</option>
<option value="entry 4">Entry 4</option>
</select>
Is it possible to search 2 channel fields using 1 form field(in this case, the lone select field)?
Replies
Low 26 Jul 2013 08:34
Not sure I understand the question, but I'm gonna go ahead and say: no. If you're using something like select name="search:field", then only a single field can be targeted.
Only with keywords you can target multiple fields.
arvinsim 26 Jul 2013 09:05
I see. Yes I was thinking something like name="search:field_1|search:field_2".
I guess that is not possible.