Forum Replies Created
-
In reply to: Messages not working.
what do you mean by ‘send message’ ? do you mean submit topics and replies? bbpress does not have messages as standard.
In reply to: Is there a way to send a reason for moderation?In reply to: Remove “reply” buttongreat – glad you are fixed !
In reply to: Issues after bbPress 2.6.6 plugin updateok, not sure I can help further, it looks site specific.
In reply to: Having trouble syncing WP and bbPress security‘Private’ is a wordpress/bbpress conflict – and it is annoying !!
either
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter('private_title_format', 'ntwb_remove_private_title'); function ntwb_remove_private_title($title) { return '%s'; }
or use
once activated go to
dashboard>settings>bbp style pack>Forum Display
In reply to: Adding custom taxonomies to Topic formsome code from one of my plugins (bbp-style-pack) that plays with this area might help
add_action ('bbp_new_topic_post_extras' , 'bsp_topic_tags_process' ) ; add_action ('bbp_edit_topic_post_extras' , 'bsp_topic_tags_process' ) ; add_action( 'bbp_new_reply_post_extras', 'bsp_reply_tags_process' ); add_action( 'bbp_edit_reply_post_extras', 'bsp_reply_tags_process' ); //handle topic tags function bsp_topic_tags_process ($topic_id) { if ( bbp_allow_topic_tags() && ! empty( $_POST['bbp_topic_tags'] ) ) { $terms = $_POST['bbp_topic_tags'] ; // Add topic tag ID as main key $terms = array( bbp_get_topic_tag_tax_id() => $terms ); $topic_data = array( 'ID' => $topic_id, 'tax_input' => $terms, ) ; $topic_id = wp_update_post( $topic_data ); } } function bsp_reply_tags_process ($reply_id) { if ( bbp_allow_topic_tags() && ! empty( $_POST['bbp_topic_tags'] ) ) { $topic_id = bbp_get_reply_topic_id ($reply_id) ; $terms = $_POST['bbp_topic_tags'] ; // Add topic tag ID as main key $terms = array( bbp_get_topic_tag_tax_id() => $terms ); $topic_data = array( 'ID' => $topic_id, 'tax_input' => $terms, ) ; $topic_id = wp_update_post( $topic_data ); } }
In reply to: Increase length of topic excerptsthanks for posting π
probably one for the buddypress support forum
In reply to: Remove “reply” buttonPut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter ('bbp_reply_admin_links', 'rew_remove_reply') ; add_filter ('bbp_topic_admin_links', 'rew_remove_reply') ; function rew_remove_reply ($links) { unset ($links['reply']) ; return $links ; }
In reply to: Remove the Edit Profile option from the user menuhmmm.. this seems to be wordpress capability and looks difficult to remove.
The best I could find is
but it would need some work to make it work for bbpress
In reply to: Display problemno idea if this has anything to do with the bbpress plugin. Please advise what widget
In reply to: Issues after bbPress 2.6.6 plugin updateok so try it without buddypress
In reply to: Remove the Edit Profile option from the user menunot sure, but try this (untested)
add_filter ('bbp_get_user_edit_profile_url' , 'rew_remove_edit' ) ; function rew_remove_edit () { return ; }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: Having trouble syncing WP and bbPress securityAt a guess you might want to start by looking at
and particularly items 3 & 5
In reply to: Having trouble syncing WP and bbPress securitybbpress just uses wordpress login, there is no ‘double security’ sorry, no idea what the above is trying to say, or what exactly the problem is.
Perhaps you could start by stating what you are trying to achieve?
In reply to: Topic font sizegreat – glad you are fixed
In reply to: Topic font sizeok, I can see that you have set it to font-size: 18px – so now I can see the car, but without your lifting the motorhuv I can’t see whether your theme is in the way.
In reply to: Topic font sizethat makes it kinda difficult to help π – a bit like asking me what is wrong with your car, but I am not allowed to see it !
In reply to: Topic font sizeI’d need a link to an example on your site
In reply to: Topic font sizedashboard>settings>bbp style pack>Topics index styling>item 4
In reply to: Username box differentglad you are fixed!!
In reply to: Username box differenttry adding this to the custom css part of your theme
#bbpress-forums fieldset.bbp-form input[type="text"] { height: inherit; }
In reply to: Username box differentprobably theme issue, but post a link to an example on your site and I’ll take a quick look.
In reply to: Strange problem with paginggreat glad you are fixed and we got there -thanks for your help.
In reply to: no registration link for anonymous usersyou either want
dashboard>settings>forums>anonymous if you want anyone to be able to post
or add registration – bbpress uses wordpress registration, so anyone of then methods here will work.
https://www.wpbeginner.com/beginners-guide/how-to-allow-user-registration-on-your-wordpress-site/
there is also a bbpress registration login which includes registration and bbpress shortcodes
[bbp-login] β Display the login screen.
[bbp-register] β Display the register screen.
[bbp-lost-pass] β Display the lost password screen.