Reply To: Issue with front page navigation

#1101
livemesh
Keymaster

Hi, this is a bug which happens when using the page template blog on home page only. The fix will be part of update this week. Meanwhile, pls locate the file template-blog.php in the theme folder and replace the line number 13 –

$paged = get_query_var('paged') ? get_query_var('paged') : 1;

with

if (get_query_var('paged')) {
    $paged = get_query_var('paged');
}
else if (get_query_var('page')) {
    $paged = get_query_var('page');
}
else {
    $paged = 1;
}

Thanks for bring this to my notice.