Hi Johan,
The JS is still there, line 116:
if (body.hasClass('article-swipe') && body.hasClass('single-post') && jQuery('.post-pagination-wrap').length > 0) {
SWIFT.page.articleNavigation();
}
If you change it to this, then it should work:
if (body.hasClass('single-post') && jQuery('.post-pagination-wrap').length > 0) {
SWIFT.page.articleNavigation();
}
– Ed