So I have this simple form:
<div id='search'>
{exp:search:simple_form channel="news|help" result_page="search/results" no_result_page="search/results"}
<span class="s_wrap">
<input type="text" name="keywords" id="keywords" value="search" size="18" maxlength="100" class="s_field"/>
<input type="submit" value="submit"/>
</span>
{/exp:search:simple_form}
</div>I do go to the results page when I have results but when i have no results i keep getting a no results message on a different page than the template I specified.
On the search/results page I have:
{exp:search:search_results switch="resultRowOne|resultRowTwo"}
{if total_results > 0}
Hurray
{if:else}
Boo!
{/if}
{/exp:search:search_results}
I must say that I do have the CSM plugin but it’s not turned on on these pages.