Code for search form:
{exp:search:simple_form channel="dbd-blog | work | case_study" search_in="everywhere" no_result_page="search/noresults" paginate="bottom" results="8"}
<div class="searchbox">
<input type="text" name="keywords" id="keywords" value="">
<input type="submit" value="" class="submit">
</div>
{/exp:search:simple_form}Code on results page:
{exp:search:search_results}
<div class="search-result">
<span class="date">{entry_date format="%l %F %j, %Y"}</span>
<h2><a href="http://{path=blog/post/{url_title}/}">{title}</a></h2>
<p>{exp:char_limit total="400"}<br />
{exp:strip_html}{blog_text}{/exp:strip_html}<br />
{/exp:char_limit}<br />
</div><br />
{paginate}<br />
Page {current_page} of {total_pages} pages {pagination_links}<br />
{/paginate}<br />
{/exp:search:search_results}
When I search “asp” this outputs 20 results on one page and in each result it shows the ee pagination tags as text. If I move the pagination tags outside of the results loop nothing pagination-related shows up anywhere. My results template is in the default location of search/results. Nothing I try works, what am I doing wrong?