<![CDATA[ First/Last and Previous/Next Missing - My Forums]]> https://forums.modx.com/thread/?thread=103058 <![CDATA[First/Last and Previous/Next Missing]]> https://forums.modx.com/thread/103058/first-last-and-previous-next-missing#dis-post-554822 SS 1.9.2

I have the SimpleSearch pagination (mostly) working, except that the First/Last and Previous/Next links are not rendering. I have all the pagination Chunks configured so I'm not sure what's missing.]]>
todd.b Oct 28, 2017, 04:25 AM https://forums.modx.com/thread/103058/first-last-and-previous-next-missing#dis-post-554822
<![CDATA[Re: First/Last and Previous/Next Missing]]> https://forums.modx.com/thread/103058/first-last-and-previous-next-missing#dis-post-554896
Search Wrapper
[[!SimpleSearchForm@SS?
	&tpl=`SearchFormTpl`
	&landing=`35`
]]

Search Form
<form action="[[~[[+landing:default=`[[*id]]`]]]]" method="[[+method:default=`get`]]">
    <fieldset>
        <input type="text" name="search" id="search" value="" placeholder="Search">
        <input type="hidden" name="id" value="">
        <button type="submit" value="Search">Search</button>
    </fieldset>
</form>

Landing Page
[[!SimpleSearch@SS?
    &elementClass=`modSnippet`
    &toPlaceholder=`results_found`
]]
[[!+results:notempty=`[[+results_found]]`]]

&containerTpl
[[+resultInfo]]
<ol>
    [[+results]]
</ol>
<nav>
    <ul>
        [[+pageCount:is=`1`:then=``:else=`[[+paging]]`]] 
    </ul>
</nav>

&pageTpl
<li>
	<a href="[[+link]]">[[+text]]</a>
</li>

&tpl
<li>
    <h3>
        <a href="[[+link:is=``:then=`[[~[[+id]]]]`:else=`[[+link]]`]]" title="[[+longtitle]]">[[+pagetitle]]</a>
    </h3>
    [[+extract]]
</li>

&pageFirstTpl, &pageLastTpl, &pageNextTpl, &pagePreviousTpl
<li>
	<a href="[[+link]]">First</a>
</li>

<li>
	<a href="[[+link]]">Last</a>
</li>

<li>
	<a href="[[+link]]">Next</a>
</li>

<li>
	<a href="[[+link]]">Previous</a>
</li>
]]>
todd.b Oct 31, 2017, 04:47 PM https://forums.modx.com/thread/103058/first-last-and-previous-next-missing#dis-post-554896
<![CDATA[Re: First/Last and Previous/Next Missing]]> https://forums.modx.com/thread/103058/first-last-and-previous-next-missing#dis-post-554872 9thwave Oct 31, 2017, 09:58 AM https://forums.modx.com/thread/103058/first-last-and-previous-next-missing#dis-post-554872