[Suggestion] Forum Icons

i would suggest you to put this feature by default (like the phpBB), so the customers can put a specific icon per single forum (i mean not the status icon like vB) ... exactly like i did on my board (http://www.fniv.it/board/supported-games/) with an add-on ... :)

I have posted a template modification for this just a moment ago.
Is not very complicate and it will give you a very similar visual result as your current vB forum.
http://xenforo.com/community/threads/extra-node-icons.6686/
 
It would be cool if you could assign an icon to each forum through the node tree.

Or is there already an easy way to do a custom icon for certain forums, default icon if no custom icon specified?
 
One way to do this now would be to edit the node_forum_level_2 template and search for phrase unread_messages
Then into that span insert something like:
<img src="/youricondirectory/{$forum.node_id}
{xen:if '{$forum.hasNew} OR !{$visitor.user_id}', '-new'}
.png">

But for this you need to have an image corresponding to each forumid - so you need 1.png and 1-new.png, 2.png and 2-new.png.

I suppose it could also be done in reverse where you only do the new icons and then apply an alpha affect to the old icons.

I thought about doing this with classes, but it seems like you'd have to do a different subclass based on each forum id as I'm guessing we can't do conditionals in the css as it will probably want to be static so it seems a pretty long way round to create a class for each forum id. I'm new to xenforo though so I'm probably missing lots of other ways to do this that might be cleaner.

P.S. this post is for adding extra node icons http://xenforo.com/community/threads/extra-node-icons.6686/ though I wanted to actually replace the default icon for many forums to a custom icon.

P.P.S. I suppose using the template conditional here http://xenforo.com/community/thread...-condition-this_script-index.6664/#post-96138 (thanks!) icons only need to exist for specific forums if that is wrapped in something like <xen:if is="{$forum.node_id} == 8 OR {$forum.node_id} == 2">
 
Forum icons would be perfect until down/ up voting by likes... :)
It surely does look good.
smile.png
*like* (cool mockup)​
gtx, juergen​
 
You guys mean something like this right?
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.

I completely agree. It makes your community look more unique and dynamic.
 
bump

I am no coder so css are no go for me.
I would prefer such an option exists just by loading an image and assign it to a node
 
I just posted up a quick and easy way to change forum icons (it doesn't add a second icon as seen above, but replaces the default instead) on a per forum basis that only requires CSS changes if anyone is interested:

http://xenforo.com/community/threads/custom-forum-icons.11074/
This is what I am doing. It was trivially easy to do. I added icons for ~26 forums so far and it's just a matter of adding lines to the EXTRA.css template.
 
It becomes a very long list when you have close to 500 forums.

Making the icon edits in the extra.css would make even more sense if you had 500 sections... Especially if your node icons are based on a per style design. Thats why they assign node_ID classes.
 
Top Bottom