Hi there,
my package.json set posts_per_page
to 25. Currently I have less than 25 posts, but still the title of the posts overview has the suffix (Page 1)
.
If I look at frontend/meta/title.js the code seems to be correct:
if (pagination && pagination.total > 1) {
pageString = _.has(options.hash, 'page') ? options.hash.page.replace('%', pagination.page) : ' (Page ' + pagination.page + ')';
}
I assume pagination.total is 0 or 1 when #posts < posts_per_page. Unfortunately it seems to be > 1.
Thanks, Leif