If you have multiple pages of comments on a blog post clicking the next page doesn't work. It will only show the first page of comments.
If you have multiple pages of comments on a blog post clicking the next page doesn't work. It will only show the first page of comments.
Hi oddcopter,
Great catch! I'll see what I can do about that, but it may require a change to bbPress. Will keep you posted.
In the mean time, you can put this at the end of the comments-bbpress.php file included with the plugin. Kind of a hack but it seems to work.
<script type="text/javascript">
/** Rewrite reply pagination on the fly to work with blog posts */
jQuery(function() {
jQuery('#bbpress-forums a.page-numbers').each(function( idx, link ) {
if( link.href.match(/\/(\d+)\/$/) ) {
pageNo = link.href.match(/\/(\d+)\/$/)[1];
link.href = window.location.href + (window.location.href.indexOf('?') == -1 ? '?' : '&' ) + 'paged=' + pageNo;
}
});
});
</script>
Fixed in development version. Please give it a try and let me know how it works for you!
You must log in to post.