I'm using the jQuery Infinite Scroll plugin - https://github.com/paulirish/infinite-scroll/ to display my paginated WordPress comments.
The plugin works fine when viewing the comments from old to new (I think this is the default option) but if the Discussion options in WordPress are set to the following:
Break comments into pages with [XX] top level comments per page and the
[LAST] page displayed by default
Comments should be displayed with the [NEWER] comments at the top of each page
Then Infinite Scroll no longer works.
Looking into the problem, it seems to be because if the settings are as above, then first comments page that WordPress will display is the last, so i.e.
WordPress 1st comment page displayed = http://MYLINK/comment-page-5
WordPress 2nd comment page displayed = http://MYLINK/comment-page-4
WordPress 3rd comment page displayed = http://MYLINK/comment-page-3
etc.
But, I think Infinite Scroll wants to increment each page, so after the first page is displayed (actually page 5) Infinite Scroll is then looking for page 6, which does not exist.
Looking through the IS options, there is a pathParse option - but there is no documentation explaining how to use it. I'm not even 100% sure if this will help.
I (and lots of others) would be super appreciative for any help you can give.