Technically it can be done (but my way outlined above is quick and easy and gives much the same result).
To get the desired result on the index page, you would need to:
Add a column to the forums table, perhaps called forumimage
Add the image location to each row on the forums table for each forum you want an image displayed for (easiest to do it via phpmyadmin to save having
to alter yet another script).
Edit index.php, look for the $fquery select that selected c.name as cat_name, c.fid as cat_fid and simply add in the new c.forumimage
Edit the index_forum template to display the forum image
|