Found solution:
Go to your admin panel, and under graphene options, in the “front page options” menu, choose one of your post categories… save it… then go back and choose “disabled” and save it again.
This should fix your problem.
Somnambulant,
New-ish to word press. How do I display all the author’s posts via The Loop in author.php. Here is what my author.php looks like. What and where do I have to change?
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<!– This sets the $curauth variable –>
<?php
if(isset($_GET[‘author_name’])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
?>
<h2>Posts by <?php echo $curauth->nickname; ?>:</h2>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>