I used to use a product search like this -
<input type="text" name="prop_KeyWords" placeholder="Product Search" maxlength="255" value="{{request.request_url.params.prop_KeyWords}}" >
But then we want to be able to search by site search keyword too so I changed it to -
<input type="text" name="prop_SiteSearchKeywords" placeholder="Product Search" maxlength="255" value="{{request.request_url.params.prop_SiteSearchKeywords}}" >
Problem is that now it won’t display searches for keywords in the title/description. Is there anyway to be able to search both at the same time ie title/description and site search keywords?