ok, I've spent many an hour tearing out hair over this little problem this week and am rather confused, I'm hoping somebody here can help me! I've got my forum up and running (using flat forum) but for some wierd reason I get user avatars in comments but not in forum node posts?? I've tried turning pictures in posts on and off like a million times (they appear in all other node types), it's quite simply a little wierd!
here is my node-forum.tpl.php
<div class="forum-left">
<strong><?php print $title?></strong> (posted under: <?php print $terms?> )
<?php print $picture; ?>
<div class="author-name">
Submitted by:<?php print $name?> (<?php print $submitted?>)<br />
<?php print t('Posts:') . ' ' . $posts; ?><br />
<?php print t('Joined:') . ' ' . $joined; ?><br />
</div>
</div>
<div class="forum-right">
<div class="content">
<?php print $content ?>
<div class="links"><?php print $links ?></div>
<br class="clear" />
</div>
</div>
<br class="clear" />
and here is my template.php
<?php
function simplex_regions() {
return array(
'left' => t('left sidebar'),
'right' => t('right sidebar'),
'content' => t('content'),
'header' => t('header'),
'footer' => t('footer')
);
}
function phptemplate_system_themes($form) {
foreach (element_children($form) as $key) {
$row = array();