Yes you can. I'll show you how. Unfortunately I don't have a lot of time to figure out a more elegant solution, so you're going to have to manually add another plugin and edit the plugin to suit your needs. I'll show you how.
First, in your Admin CP, Plugin System section, go to Add New Plugin. Set the Product to Default Post Icon. Set the hook location to newthread_forum_start. Enter the title as "Default Post Icon (per forum)".
This is the code for the plugin:
Code:
if ($foruminfo['forumid'] == '0')
{
$newpost['iconid'] = '1';
}
else if ($foruminfo['forumid'] == '0')
{
$newpost['iconid'] = '1';
}
else
{
$newpost['iconid'] = '';
}
On the first line, change the 0 to the forumid of the forum you want to have a different default post icon. Two lines down, change the 1 to the post icon id you want to be the default for that forum.
If you want another forum to have a different default post icon, then change the next 0 and the next 1 appropriately, the same as you just did.
If you want more forums to have different default post icons, you must COPY the FOUR lines that start with "else if" and past that clump of code above the line that's just "else". Make the appropriate changes to each 0 and 1 (forumid and post icon id).
I hope that makes sense.
(And if you only wanted ONE forum to have a different default post icon, don't worry about the second 0 and 1, leave them as they are; since no forum has a forumid of 0, nothing will happen.)