Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
etc_pagination: paginate everything
Based on the orphaned ob1_pagination plugin, etc_pagination
inherits most of its features and adds wraptag
, break
and some other attributes. It can be used alone for <txp:article />
list pagination, but its main interest is the ability to paginate <txp:article_custom />
and other lists, with a little help of etc_query
.
More info and download on the home page.
Offline
Re: etc_pagination: paginate everything
Great to hear this!
Looks like there’s something [not] unfolding with the link you provided as the homepage, though…
Offline
Re: etc_pagination: paginate everything
Could you be more specific, please, it looks ok for me?
Offline
Re: etc_pagination: paginate everything
Great Oleg :)
Thank you
Offline
Offline
#6 2013-02-01 14:16:27
- milosevic
- Member
- From: Madrid, Spain
- Registered: 2005-09-19
- Posts: 390
Re: etc_pagination: paginate everything
Good news, thanks for your work!
<txp:rocks/>
Offline
Re: etc_pagination: paginate everything
Now I can see it @etc, yesterday the link was returning a 404 :)
Great work.
Offline
Re: etc_pagination: paginate everything
I must have been toying with something at this moment. Thanks guys!
Offline
Re: etc_pagination: paginate everything
Hi Oleg,
Are there any examples of usage for txp:article
alone? I’m getting strange results using the plugin with something like this:
<txp:if_article_list>
<div class="twelve columns">
<txp:article limit="30">
<article>
....
</article>
</txp:article>
<txp:etc_pagination prev="Previous" next="Next" wraptag="ul" break="li" class="link-list" />
</div><!-- end twelve columns -->
</txp:if_article_list>
I don’t use forms for my txp:article
tags anymore, is the sample code above ok for this plugin or am I missing something basic? The number of links is correct but on clicking page 2 or any other page, there is no output. Most likely I’m just missing the obvious…
Last edited by jstubbs (2013-02-11 09:28:23)
Offline
Re: etc_pagination: paginate everything
Hi Jonathan,
it should work as is with <txp:article />
. Can you check if the href
s of the generated page links look correct and post them here?
Offline
Re: etc_pagination: paginate everything
Does <txp:etc_pagination prev="Previous" next="Next" wraptag="ul" break="li" class="link-list" />
have to be inside the container tag of <txp:article>
? I had it outside as otherwise there was like 300 links!
I’ll put it back up on the site and report back…
Offline
Re: etc_pagination: paginate everything
OK generated links look ok but there is no output from <txp:article limit="30">
. The URL’s are domain.com/?pg=3 (1,2,3,4 etc etc). No problems there.
Page source reports empty article
tags, using the following code:
<txp:if_article_list>
<div class="twelve columns">
<txp:article limit="30">
<article>
....
</article>
</txp:article>
<txp:etc_pagination prev="Previous" next="Next" wraptag="ul" break="li" class="link-list" />
</div><!-- end twelve columns -->
</txp:if_article_list>
The actual page code is a little more complex, but that’s the gist of it. In page source I see 30 of these:
<article class=""></article>
The class is set by a custom field, and there are various txp:if_custom_field
tags within the txp:article
call.
Offline