hmmm…can only suggest that you try the basic fault finding….
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Health Check & Troubleshooting
This is the plugin for using shortcodes in menu – hope this helps ?
Shortcode in Menus
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
Code Snippets
function change_reply_order() {
$args['order'] = 'DESC';
return $args;
}
add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
Hi,
I am having issues overriding the css in bbpress.min.css using my child theme style.css
I have also tried the method of creating a bbpress.css in the wp-content\themes\<child-theme>\css\ folder, but that hasnt worked.
Using a parent theme and making changes in that style.css seems to work (albeit my dev server has on an older version of wordpress).
Specifically, I am trying to change the sizes of “topic type” and “topic status” dropdowns (or the font) as the text is cut off.
I’m targeting the ID #bbp_topic_status_select directly with !important and still not working.
WP version: 5.6.1
bbpress version: 2.6.6
URL: tinymatch.com.au/forums/forum/general/
In our wordpress site, our post page is set to Blog in the Homepage settings. We have recently installed bbPress and are setting have set up a forum page with the header “Community Forum”. This correctly displays the bbPress forum tree. However, when you navigate to a forum in the structure, you are directed to the Blog page which then display the forum. This is a problem because the page headers are different. We can’t figure out why this is happening or how to correct it. Any help or tips would be greatly appreciated.
I *think* I’m seeing an issue with bbPress (2.6.6) on WP 5.6.1. I’ve only seen it on mobile devices. What happens is that when you start editing a post in text mode there is no echo. If you switch to visual and back to text, the text appears. I’m wondering is this is related to the recently reported bug(s) in WP 5.6.1 involving TinyMCE or editing in general.
Anybody know any more about this, or has anyone else seen a problem with mobile device text posting on WP 5.6.1?
@ricsca2 – I’m pretty sure it just uses the wordpress default excerpt length, which you can amend – see this for 3 methods
How to Change The Default Excerpt Length In WordPress
if this works, please post back so we know 🙂
which field do you mean? – bbpress doesn’t store anything google+ related, in fact bbpress doesn’t store any social media fields at all – WordPress does, and it might also be your theme or another plugin adding these
Hi
I use wordpress + bbpress
For example, i need to write a query statement(mysql) on a topic.
ex)
select
id,
numberfrom tab
When an grave accent is entered, the [code] tag is automatically inserted.
ref img : https://ibb.co/9bhG177
I want it to be typed exactly as you type it.
So I want to disable the function for the code tag.
I need your help and support
Best Regards,
Hyunho
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Health Check & Troubleshooting
Then come back
@newest- ok, thanks for that.
It works the other way around, you add a topic to a post, not a post to a topic.
so when you publish or edit a wordpress post, you can attach a topic to it.
I didn’t write the original plugin, and Gutenberg made it not work, so I have been given editing rights to try and fix it.
so start by going to
dashboard>settings>discussion and you will see topics for posts about half way down – here you can set up the default actions.
Then as a test create a post.
on the right hand side you should see Post and Block options, make sure you have clicked Post
You should then see near the bottom either in the main but or in the sidebar a ‘Topics for Posts’ box, which will show the defaults.
If you don’t see this (as Gutenberg unhelpfully tries to hide anything useful to the user) click the 3 vertical dots on the right hand side right of publish and the settings cog, at the bottom you will find ‘preferences’ and in that you will find the option to show the topics for posts under additional panels section at the bottom
Sorry this is all horrible – it’s not me making it so I promise you 🙂
@robin-w
I was not able to attach an image describing the issue I am facing , hence asking for same. I have managed that finally and the image is attached in thereply.
The description of this plugin reads :
===
Adds an option to the Discussion meta box to use a bbPress topic instead of WordPress comments, and displays that topic beneath the post on your site.
You can let the plugin create a new topic for you in the forum of your choice, or specify an existing topic to attach to the post.
A topic can be attached to as many posts as you’d like, but only one topic can currently be attached to a post.
====
From above my understanding is that in Discussion Metabox of a post a bbPress topic should show up, or I should be able to create a new topic. But that is not happening, though I am getting a checkbox that I have already ticked in, as shown in image I have attached.
You say :
“Topics for posts works on when you publish a topic, so can you start there.”
But when publishing a topic I see no option to attach it to an existing post. Please see image under :

——
I hope I am able to clarify. I can appreciate you have limited time. If still too cumbersome or still not clear, let us forget about this. Thanks anyways.
I think I got timed out, not sure if my reply was deleted.
I haven’t solved it yet, I did find two promising threads though but I couldn’t make sense of it.
ok, if you have no keymaster, then install
bbp style pack
once activated go to
dashboard>settings>bbp style pack>bug fixes
and you will be able to set a keymaster, who can then see forums
you can deactivate and delete the style pack plugin afterwards, or make use of its features
i have installed bbpress , i am an administrator , i assigned the role to user moderator (the highest show role) i can only see topic and replies tab only on my WordPress dashboard
i saw other support queries tried every thing but cant fix it
i set permanlinks also
cant assign keymaster as its not visible in option
https://www.theislamicquotes.com/ is the site
I made the list
<?php $args = array( 'post_type' => 'topic', 'post_parent' => bbp_get_forum_id() ); $loop = new WP_Query( $args ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<a href="<?php echo get_the_permalink(); ?>"><?php the_title(); ?></a>
<?php endwhile;?>
This gives me all the topics under the current topic’s forum (I’m on single-topic.php)
Is there a way I could limit the list to 5 links (that’s easy, post_per_page = 5
) but on top of that only show the adjacent posts?
Topic 3 link
Topic 4 link
Topic 5 link <----- I'm here
Topic 6 link
Topic 7 link
In the above example, it’s showing me 2 previous adjacent posts and to next adjacent posts
What happens is if I set post_per_page
to 5 then this happens
Topic 1 link
Topic 2 link
Topic 3 link
Topic 4 link
Topic 5 link <----- I'm here
The current link is always last, I realized this is more of a wordpress question but I’d like to try my luck here since I already opened a thread
Hi,
My current WP configuration
– WordPress version: 5.4
– BBPress version : 2.6.6
– Website Link : https://kam-webagentur.fr
Problems encountered :
I installed WordPress but I am having a problem installing “bbpress” which I want to integrate with WordPress.
I arrive at the “Welcome to bbPress installer” installation interface
and this is the error message I get once I run the installation.
Fatal error: Call to undefined function: wp_check_invalid_utf8 () in /www/forum/bb-includes/functions.wp-core.php on line 60
What is the procedure to stop getting this error message ???
Thank you in advance…
I have disabled all the plugins on my site and this issue is still happening… BBpress embeds the link (to a wordpress site) The image of the landing page and intro text is displayed but the links are not clickable…
Amphibian and reptile info pages at WH
I cant upload a screenshot here but the above link shows the issue…
Any ideas?
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Health Check & Troubleshooting
Then come back
this turns comments on in bbpress
add_filter ('bbp_force_comment_status' , 'rew_set_comments_on') ;
function rew_set_comments_on () {
return true ;
}
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
Code Snippets
FYI I use the free version of GD bbPress Tools that has a setting for the User Signature. This plugin is actively updated.
GD bbPress Tools
Got the above from this stackoverflow thread
My problem is exactly like that except for bbpress
1) this is the default case – users can post topics without anyone needing to approve
2) I think this does it https://wordpress.org/plugins/wp-monalisa/ according to https://bbpress.org/forums/topic/smiley-emoticons/
3) this is what you might want https://wordpress.org/plugins/moderation-tools-for-bbpress/