bbpress plugin moderation
I’m looking for the same. I just found this, not tried yet but seems to be working: bbPressModeration
I’m looking for the same. I just found this, not tried yet but seems to be working: bbPressModeration
Never mind now. Fortunately (in this case) I have found an alternative solution to bbPress for WordPress – Simple:Press! I personally think that Simple:Press is much better not only because it allowed me to import everything from phpBB very easily but also because it seems much more comprehensive and well put together; – more comparable … Read more
I worked it out. add_action( ‘user_profile_update_errors’, ‘validate_steamid_field’ ); function validate_steamid_field(&$errors, $update = null, &$user = null) { if (!preg_match(“/^STEAM_[0-5]:[01]:\d+$/”, $_POST[‘_bbp_steamid’])) { $errors->add(’empty_steamid’, “<strong>ERROR</strong>: Please Enter a valid SteamID”); } }
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
BBPress AJAX problem
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
http://bbpress.org/forums/topic/social-engine-3-export-forums/#post-135964 This post has helped me greatly. Thanks Steven.
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/
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.
Line #45 of loop-single-reply.php (Source) <?php bbp_reply_author_link( array( ‘sep’ => ‘<br />’, ‘show_role’ => true ) ); ?> See Also: http://codex.bbpress.org/bbp_reply_author_link/ http://codex.bbpress.org/bbp_topic_author_link/