Where To Find bb_profile_data(); In bbPress?

From this reference you get the following info: Function and Method Cross Reference bb_profile_data() Defined at: /bb-includes/functions.bb-template.php -> line 2405 Referenced 1 times: /bb-templates/kakumei/profile.php -> line 30 so you should check your profile template. If you have ssh access to your site, try # grep “bb_profile_data” -R /the/path/to/your/site/ in the shell command line, to search … Read more

WordPress editor, change code wrap (bbpress?)

put this code in functions.php add_action(‘wp_footer’,’ravs_codeTag_fix’); function ravs_codeTag_fix(){ if ( bbp_use_wp_editor() ) : ?> <script> jQuery(document).ready( function() { /* Use <code> instead of backticks for the Code button in the editor */ if ( typeof( edButtons ) !== ‘undefined’ ) { edButtons[110] = new QTags.TagButton( ‘code’, ‘code’, ‘<code>’, ‘</code>’, ‘c’ ); QTags._buttonsInit(); } }); </script> … Read more

How to remove br and p tags from bbPress

Take a look in here, not sure if this will accomplish what you’re looking to do (the existing posts) but it should stem the tide going forward: http://codex.wordpress.org/Function_Reference/wpautop You’re looking for something like this I think: remove_filter( ‘the_content’, ‘wpautop’ ); This plugin also does something like that, though I’ve never used it: http://wordpress.org/plugins/wpautop-control/

bbPress – Post count increases after every edit

This is not related to bbPress 2.4, bbPress 2.x at this stage does not include this functionality out of the box. I expect you are using an additional plugin to add the ‘Post count: 1’ functionality to bbPress and your issues relate to that plugin.