Hi there - this thread pertains to my issue at the moment - the segment is the way i did this too, with a template for viewing by author and the author id number as the segment in question (I’ll certainly look to do it with the username though for SEO purposes once i correct my problem). The problem I’m having is pagination when that’s done. For pagination, i simply added the usual paginate tag just before the closing of the entries tag. So:
{paginate}
Page {current_page} of {total_pages} pages {pagination_links}
{/paginate}
And so what this winds up adding for the page 2 link is P10 (because I’m paginating after 10 entries) and it adds that to the segment after the author id that i had at the end of my url to identify the id to my entries tag. But it’s not working for me. instead of paginating, I simply get the same list overagain. Any suggestions?
So my entries tag looks like this:
{exp:weblog:entries weblog="{my_weblog}" orderby="date" status="open|Featured" sort="desc" limit="10" disable="member_data|trackbacks" dynamic="off" author_id="{segment_3}" pagination="bottom"}
<!-- S BLOG ENTRY ROW -->
<div id="blog_entry">
MY TITLES AND ALL OF MY CUSTOM FIELDS DECLARED IN HERE
</div>
<!-- E BLOG ENTRY ROW -->
{paginate}
Page {current_page} of {total_pages} pages {pagination_links}
{/paginate}
{/exp:weblog:entries}
And author id is segment 3, as seen here:
http://www.scalepassion.com/index.php/blog/author/2/
Any thoughts on why the pagination isn’t working for me?
Thanks,
John