Page 1 of 1

How do I remove next page links

Posted: Thu Jun 14, 2007 5:17 pm
by mattpitts74
Hi There I have just installed CMS and wondered if it is possible to remove the next page links that appear at the bottom of every page?

Thanks
Matt

Re: How do I remove next page links

Posted: Thu Jun 14, 2007 5:30 pm
by Nullig
Either remove/comment out this section, or the parts you don't want, from your template:

Code: Select all

         <!-- Start relational links -->
	 <div class="hr"></div>
	 <div class="right49">
	 	<p>{anchor anchor='main' text='^ Top'}</p>
	 </div>
         <div class="left49">
            <p>{cms_selflink dir="previous" label="Previous page: "} <br />
            {cms_selflink dir="next"}</p>
         </div>
	 <!-- End relational links -->
Nullig