If I select the "User pictures in posts" option, the pic appears perfectly within each entry on the main blog listing page, but not on the individual post pages once you've clicked through via the entry title or comments link.
In node.tpl.php I have the following:
<h2><?php print $picture ?><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
Do I need to call the user pic from somewhere else to make it work on the other pages? I've tried the following on page.tpl.php:
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $picture . $title .'</h2>'; endif; ?>
But this doesn't help. Any suggestions? I'm using the SEOposition theme.
Thanks in advance.