I have a Simple Search form in my template:
{exp:search:simple_form channel="products" search_in="everywhere" result_page="products/search" form_class="search form-inline"}
<div>
<label for="keywords" class="visuallyhidden">Search</label>
<input type="search" name="keywords" id="keywords" maxlength="100" placeholder="Search our store…">
<button type="submit" class="btn">
<i data-icon=""></i>
<span class="visuallyhidden">Search</span>
</button>
</div>
{/exp:search:simple_form}But when the form is submitted I always get the standard gray EE “Your search did not return any results.” error page.
I have looked in the DB and the searches are being logged:
id site_id member_id screen_name ip_address search_date search_type search_terms
19 1 1 Jeremy Worboys 127.0.0.1 1350354904 site Bellaand the row in the DB shows results are being found:
search_id site_id search_date keywords member_id ip_address total_results per_page query custom_fields result_page
3a94a35005ffa2af06a6e43c6a9228ab 1 1350354904 Bella 1 127.0.0.1 11 50 [...] [...] products/searchand if I take the SQL in the `query` column and run it I can confirm it is finding the 11 results.
Let me know if you need any other details.