Gossamer Forum
Home : Products : Links 2.0 : Discussions :

More Links Pages

Quote Reply
More Links Pages
Hello Everyone!

I have a problem: the script builds the pages more2.html or more3.html when there are too many links for the index.html page of the category. Anyway the index.html page doesn't have a link to the pages more2.html and more2.html doesn't have a link to more3.html

How is it possible ?
I tried to search the forum for an answer but I wasn't able to find one.

Thanks in advance for your helpful tips.

Francesco
Quote Reply
Re: [willsmit] More Links Pages In reply to
Hi. Did you try this;

Code:
<%if Prev%>
<%Prev%>
<%endif%>

<%if Next%>
<%Next%>
<%endif%>

I havn't used Links2 for a while.. but I'm pretty sure that will work (you may have to wrap a <a href. ..>..</a> around it, as I'm not sure if they are linked.

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk


IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
Quote Reply
Re: [Andy] More Links Pages In reply to
Thank you a lot Andy!
I am gonna try it :)
Quote Reply
Re: [willsmit] More Links Pages In reply to
Problem solved :)

this is the missing part:

<!-- Next/Previous links if spanning pages. -->
<p align=center>
<%if prev%>
<small><a href="<%prev%>">Prev <%build_links_per_page%></a></small>
<%endif%>
<%if next%>
<small><a href="<%next%>">Next <%build_links_per_page%></a></small>
<%endif%>
</p>

Thanks for your help :)