Support Forums for LiveMesh Themes & Plugins › Forums › Enigmatic Theme Support › Issue with front page navigation › Reply To: Issue with front page navigation
July 9, 2013 at 12:08 pm
#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.