XF 2.2 Is there any way to add custom icon to node, forum or thread?

Any sort of automated process would require custom development.

It's not that hard to do - it just requires some CSS per node, as well as uploading the images to the server.
 
Go to fontawesome and select the icon you want.

Put this in extra.less (per forum).

Code:
.node--idxx.node--page .node-icon i:before {
    content: "\xxxx";
}

xx = the forum id, example: 24
xxxx = the font awesome code, example: f636
 
Go to fontawesome and select the icon you want.

Put this in extra.less (per forum).

Code:
.node--idxx.node--page .node-icon i:before {
    content: "\xxxx";
}

xx = the forum id, example: 24
xxxx = the font awesome code, example: f636
Thanks!

I know I will sound stupid, but where is this fontawesome?
I guess I will just have to upload the icons via ftp, no?
If I add this to extra.less how will the "thread" find the icon? There's no link in this code....

Thanks again!
 
Search icons there for what you need. Just get the code.

This is for the forum node, not thread.

You might want to look into the article thread type and the preview view mode if you want imagery for threads.
 
Search icons there for what you need. Just get the code.

This is for the forum node, not thread.

You might want to look into the article thread type and the preview view mode if you want imagery for threads.
Well, I mostly only want to get icons for the forums not the threads, so that's fine.

But these icons are expensive... 99 USD/year, when I can buy better ones for 10 USD?
 
Top Bottom