I had the same issue… see: https://bbpress.org/forums/topic/how-to-override-bbpress-css/
I walked through the bbPress code, and discovered where it looked for its css. Amazed it wasn’t documented!
ok.. inside the loop (bhp_replies), I can use the WP function get_post_type:
get_post_type( bbp_get_reply_id() )
Which will return topic, reply accordingly. Is this the best way to do this?
OK.. no need for a plugin.
JJJ’s default theme compat stuff first searches for a bbpress.css file in the theme’s css directory —
So, a workaround is to simply copy the bbpress.css from the theme-compat folders into a css folder in your theme, and then edit that file.
Ok, I’ve implemented a quick / dirty fix:
In bbpress/bp-admin/install.php, change line 196 from:
$bb_install->input_text(‘user_bbdb_password’, ‘password’);
to
$bb_install->input_text(‘user_bbdb_password’);
I’m also experiencing this problem with the missing password field… is there a fix / workaround?