Topic: Optimized page navigating

Posted under Site Bug Reports & Feature Requests

When looking at pages, I can only select to skip to page 750. Past that, I need do manually click the next page button. Maybe a way to select what page you want to go directly to or a 'go to last page' button would be cool, or at least be able to quickly go past 750 pages.

protox3alt said:
When looking at pages, I can only select to skip to page 750. Past that, I need do manually click the next page button. Maybe a way to select what page you want to go directly to or a 'go to last page' button would be cool, or at least be able to quickly go past 750 pages.

If you want to look at the last pages, you can use the inverse order (for instance, the opposite of the default order is order:id_asc).

Donovan DMC

Former Staff

protox3alt said:
Maybe a way to select what page you want to go directly to or a 'go to last page' button would be cool, or at least be able to quickly go past 750 pages.

This isn't really possible, everything beyond page 750 is sequential navigation, posts per page is all guesswork at that point (you're filtering by before or after a specific id, it is not possible to go to a specific page)
if you want the absolute last page, use a0 as your page number (set in the url), this is after 0, thus it is not possible for any posts to be beyond this

You can set your per page limit higher, up to 320, but you cannot go any further beyond 750 via numbers, and page numbers are meaningless after that

If the site actually let you, you could just barely get to page 781 with 320 posts per page
https://github.com/e621ng/e621ng/blob/4548e9e452aa616e375b0411cd052aff4f0fb2e7/app/indexes/post_index.rb#L10 (note the 250,000 here; the site lets you get to 240,000 with 750 @ 320 a page)

Updated

donovan_dmc said:
This isn't really possible, everything beyond page 750 is sequential navigation, posts per page is all guesswork at that point (you're filtering by before or after a specific id, it is not possible to go to a specific page)
if you want the absolute last page, use a0 as your page number (set in the url), this is after 0, thus it is not possible for any posts to be beyond this

You can set your per page limit higher, up to 320, but you cannot go any further beyond 750 via numbers, and page numbers are meaningless after that

If the site actually let you, you could just barely get to page 781 with 320 posts per page
https://github.com/e621ng/e621ng/blob/4548e9e452aa616e375b0411cd052aff4f0fb2e7/app/indexes/post_index.rb#L10 (note the 250,000 here; the site lets you get to 240,000 with 750 @ 320 a page)

Would I just copy paste the code into my CSS?

for the a0 tip, where in the url what I type that?

Sorry for the late response.