Dar Forum,

I have installed forum / advanced forum

I wonder is there a way of altering the folder logo on to be difference on a per forum basis.

For example here on http://www.ultimatesportingheroes.com I have different forums for soccer / boxing / cricket etc and would like a different logo / icon per sport.

I thought I might be able to do it with CSS but it didn't seem possible
Thank you for reading

David

Comments

michelle’s picture

Use the Taxonomy Image module.

Michelle

stclaird’s picture

Thank you

stclaird’s picture

Until i get time to look at the taxonomy image module I used a bit of work around in the advf-forum-list.tpl.php theme override

<?php $filename = $directory.'/'. $forum->name.".png";  if (file_exists                                                     ($filename)) { ?>
                  <div><img style="margin-right:10px;" src="<?php print $filenam                                                     e; ?>" /></div>
          <?php } ?>
                 <div class="name">
                  <a href="<?php print $forum->link; ?>"><?php print $forum->nam                                                     e; ?></a>
                </div>
                <?php if ($forum->description): ?>
                  <div class="description"><?php print $forum->description; ?></                                                     div>
                <?php endif; ?>

it looks to see if there is a file which matches the forum name and displays it.