No pagination of favorited entries? 
Posted: 16 April 2008 05:02 PM   [ Ignore ]
Newbie
Rank
Total Posts:  11
Joined  2008-02-06

Am I understanding the Favorites documentation correctly that it isn’t possible to do pagination with exp:favorites:entries?

All {exp:weblog:entries} variables can be used with this tag, except pagination.

Profile
 
 
Posted: 17 April 2008 07:00 AM   [ Ignore ]   [ # 1 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  3350
Joined  2006-10-18

McCarthy,

Favorites:Entries does indeed work with pagination. smile
It was a feature that was added recently, and we… errr… I overlooked that on the documentation. I apologize for that smile

It works just like native EE pagination:

{exp:favorites:entries weblog="my_weblog" limit="10" paginate="bottom"
  
<p><a href="{title_permalink='site/template'}">{title}</a></p
  
{paginate} 
<p>Page {current_page} of {total_pages} pages {pagination_links}</p
{/paginate} 
  
{
/exp:favorites:entries}

 Signature 
Profile
 
 
Posted: 17 April 2008 10:59 AM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  11
Joined  2008-02-06

Well that’s good news.  Thanks, I’ll give that a shot.

Profile