Is it possible to do an “Exact” search with dynamic parameters. Something like this, but of course this doesn’t work.
POST DATA:
<form method="post">
<select name="search:purchased_id">
<option value="">Select Product</option>
{exp:channel:entries channel="products" }
<option value="={entry_id}">{title}</option>
{/exp:channel:entries}
</select>
</form>
TO:
{exp:channel:entries
channel="purchased_items"
dynamic_parameters="search:purchased_id"
}
{title}
{/exp:channel:entries}Thanks!