If you know CSS you can easily add some styles to your to style sheet. If you use the default templete, it could look like this:
.bbPress.forum .entry-title {
/*Styles to add icon image to the left of this element goes here*/
}
Thanks Martin…
Ive managed to edit some bbpress templates to include the “Featured” image for the forum.. but i was aiming to have something like different icons for forums read / unread like most other forum software has.
Cheers again, i’ll keep playing around with it and see what i can manage.
Regards, Darren
Hey Darren, let me know if you have any luck with this. I was looking to do the same thing.
I think this could be a great plugin. In fact, if memory serves correct, there was one like this for bbPress 1.x or 0.9.
There is just two main parts really. Optionally assigning icons to the Forums (which could either be a radio to select from a certain set or the featured image could be used to upload your own) and then the actual topics.
Wouldn’t be hard to execute. I’d actually love to do something like this as I think it would be fun, just don’t have the time at the moment.
sunnyt7…. Ive managed to edit a template to insert a “featured image” and added support to my custom theme so when creating a forum the “featured image” box appears and allows the us of a image..
I stupidly forgot to pay my hosting account this month ($9-) lol now i have to wait until next week before i can activate my hosting / provide a live demo.
I’ll add a tutorial / Guide to this once ive got it sussed out correctly..
Sounds great Darren would love to see it, feel free to Pimp your site here.
A plugin would be cool and like Jared there is much on my plate at the moment.
Similar to Martin’s method above I have been using a custom icon font and targeting each forum like so with CSS where in this case the forum id is 34.
.bbp-forum-34 i:before {
content: "\e112"; /* glyphicons_ */
}
Sounds cool Darren.. definitely looking forward to see what it looks like.
And Stephen, I’m guessing you have to manually create a CSS class for each forum?
Yes… An entry in CSS for each forum
How was this passed? just through the bbpress css or?