Hello,
I have a simple search form, marked up thusly:
{exp:search:simple_form result_page="/search/results" no_result_page="/search/no_results" search_in="everywhere" results="3"}
<input type="search" name="keywords" placeholder="SEARCH">
<input type="submit" value="">
{/exp:search:simple_form}And my results page, marked up thusly:
{exp:search:search_results switch="even|odd"}
<div class="result {switch}">
<h2><a href="http://{page_url}">{title}</a></h2>
<p> {exp:search_hilite}{excerpt}{/exp:search_hilite} <a href="http://{page_url}">View Page</a><br />
</div><!--/.result--><br />
{/exp:search:search_results}</p>
<p>{if paginate}<br />
{page_count} {paginate}<br />
{/if}When I perform a search, I am taken to the results page, and 3 entries display. The pagination shows that I am on page 1 of X pages. When I click on page 2, for example, the URL is appended with “P3”, the page refreshes to show the same 3 results from the first page, and the pagination still shows that I am on page 1 of X pages. If I click on page 3, the URL is appended with “P6”, and the same thing happens.
No idea what’s going on here. I’m running EE 2.1.3.