@schmitt, Thanks for the feedback 
No I don’t have an SVN for the k2 BBPress theme, but what changes would you submit. Before posting please think about my following points.
(a) I have not yet implemented a “proper” tab bar , like the solution posted by Sabutay as “normal” users don’t like editing things…. what ever I implement as a template would be wrong for the majority of people.
(b) fam-fam icons, I do want to do, but I don’t want to unnecessarily bloat the theme, just installing a ccs file is kinda cool. Just using a css also makes the theme more “secure”, i.e. anyone who developed their theme from the original wordpress kubrick theme has had to keep releasing updates in order for the theme not to be vulnerable to XSS various attacks.
It seems like a good idea. Why not pitch that to the bbdev mailing list?
You can’t change the colour based on who’s read it because there’s no way to tell who’s read the new post or not (hence it not being new if they have read it). There is however a plugin to track who’s read what last post but that which unfortunately needs yet another plugin.
bbPress is very weak in the user event tracking department. Not even a built in last login date which is a serious flaw in design.
It’s like that on purpose 
That hosting only costs like $10 a year but it still costs.
Obviously if anyone wanted to use the template I’d either remove the ad entirely or put a space there if they wanted.
I mean K2 wordpress… not BBPress…
If one were to add enhancements to the K2 BBpress theme, I don’t think there is an SVN to submit changes.
Does it make sense to have a themes SVN just like plugins?
Thanks. At some point I want to integrate this into the full K2. I like the theme but the lack of recent progress on development is disconcerting.
I worked overnight to bring the My Views plugin up to date for public release. I am pleased to announce it now works with both 0.8.2.1 and the trunk!
But it now goes way beyond that. Be sure to read the readme.txt
http://bbpress.org/plugins/topic/67
You can see a demo here: http://bbpress.nfshost.com/forums/view/most-views
(My Views is a powerful addition to the default “views” in bbPress. It will let you customize output and adds several new views. My Views consists of a main plugin and several optional “module” plugins that can be added if desired for additional new views.)
Appended bbPress Views by My Views:
* Latest Discussions
* Topics I’ve Started
* Topics I’ve Participated In
Extended bbPress Views by My Views if optional “bb Topic Views” plugin by Mike Wittmann is installed http://bbpress.org/plugins/topic/53
* Topics with the most views
* Topics with the least views
Extended bbPress Views by My Views if optional “Plugin Browser for bbPress” plugin by Sam Bauers is installed http://bbpress.org/plugins/topic/57
* Installed bbPress Plugins
* Available bbPress Plugins
and many little other tweaks to views including proper titles and headers as well as a dropdown views list box.
Well…I’ve resolved my (and maybe also your) problem… the problem was that I’ve used the same db prefix for both bbpress and wordpress… I feel like an idiot
I just didn’t read the instructions too carefuly
I need someone to integrate BBpress to my exiting site,if anyone is intrested..pls email me at froots@gmail.com and i will brief you on what are the things and looks that i need. Thanks guys..
I guess you’ll see that the way it works around here is you get the idea, you volunteer to make the plugin 
Start coding. But seriously, without cron jobs or pseudo cron it will be tricky to do this. A plugin would have to check the time of day each time it runs and then keep whatever user is currently visiting on a delay while it emails however many people. This can be problematic. What if the site is fairly idle at that time when it should email and noone is visiting? What if there are 100 emails to send, will the people be kept waiting over a minute or two?
Personally I’m just using yahoo rss to email alerts. It watchs the rss feed for you for changes.
But this plugin could be easily changed to have two checkboxes, one to just email a summary at end of day, vs when it happens:
https://bbpress.org/plugins/topic/23
http://www.la-school.com/2006/bbpress-notification/
Hey linickx, great theme, I love it!
Find the .post rule and add overflow: auto;
to it. That way there will be a scroll bar at the bottom if anything is too long. overflow: hidden;
will simply hide it instead.
Also, if you didn’t know bb does let you search.
Hit up http://www.nyquistcapital.com/forums/search.php . You can also add a search form to your template but I’m not sure just how.
I have found if I post very long links they do not wrap. Any clue on how to prevent this?
Yea after i tried posting it in there a few times i figured that out. Will do boss!
If you’d be so kind as to take all that code out of your post and put it in http://pastebin.ca/ then link to it, that’d be nice. Also, bb doesn’t by default use bbCode. Code is delimited by ` backticks.
This is what i have for my wp login. I want my users to login/register from the wp side. So i have this snippet of code i gathered from various forum posts as well as some of it was in my current theme.
It says Welcome guest when you arent logged in or registered and it gives the link to register. If your signed in or sign in it says Welcome username and shows the forum avatar you have set. Based on your user level it shows you different links for each thing you can do. Like make a post in WP or your profile and favorites in the forum.
I have a redirect page setup that when you login from this form it just directs you back to the index page instead of going automatically to the dashboard as this confuses most people and the links are on there if your signed in to show you what you can do.
** I didnt write this i just gathered it up from various sources on the internet in different forum posts and edited it to suit my needs. Part of it was already wrote into the theme i bought for my wp. **
pastebin url to it: http://pastebin.ca/651318
The redirect part is a file i named redirect.php and placed in my wp main directory with a redirect link to the main page. You can see that bit here :
http://pastebin.ca/651326
If you have your bbpress intergrated well with wp you should be able to use the same form on your forum. That is what i use.
Looks pretty good in FF. You could push the google ad down a bit. It looks to cluttered there squashed upside your views and tags section.
Ah I know what it is after studying the code a bit.
They never planned on $topic_id being null or not set, so it’s being inserted into the query as blank.
mysql is getting something like
SELECT meta_value FROM $bbdb->topicmeta WHERE topic_id = AND meta_key='views'
see the blank before AND? It’s unacceptable to mysql, needs to be a value.
hack
function get_view_count ( $topic_id )
and
function initialize_view_count( $topic_id )
and make a new first line for each that says
if (!$topic_id) return;
Should be a dirty workaround until the author can take a look.
I haven’t seen the bb-topic-views author around, well ever, but apparently it’s been two months or so.
Unfortunately I can’t reproduce the error or I’d try to help.
Can this be used as a plugin? The real questions should be: Can you overide normal bbpress functions with a plugin? And if so, how would this plugin look like?
And can a function like this be added:
If user logged-in = false -> redirect to login.php (or register.php)
everything in front end is ok but in admin panel i have got that error for moderated post
bbPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘AND meta_key=’views” at line 1]
SELECT meta_value FROM bb_topicmeta WHERE topic_id = AND meta_key=’views
Hi!
I don’t use BBPress in that site, i’m installing it on another site, and there the code i posted works
Hey Detective, thanks for the code snipet. I checked out your site and I see it on your sidebar in the forums but not on your main WP sidebar? BTW, nice looking site.