@ricsca2 – I don’t know what you are asking in the previous or whether you still have an issue on either ‘can you automatically insert the “leave and comment” look?’ or ‘As for the seo, can having the article with the same title in the forum penalize?’ or what either means.
If you still need help, can you type more than a single sentence 🙂
On the issue of buddypress, topics for posts lets you decide if the default for a page is to create a topics for posts or not (see dashboard>settings>discussion). On page creation, you can then switch on and off as you wish. Are these actual pages or virtual pages?
bbpress only uses wordpress login, so doesn;t change anything in this area
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
I find bbpress a great forum but it has some basic shortcomings.
For example, when a user creates or replies to a discussion, they should be automatically subscribed.
This option is very useful to keep the forum active and who is not very familiar with forum does not know of its usefulness and does not know how to activate it on bbpress.
Is there a way to activate it by default without using plugins?
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
Hi,
I am using default way to stop spam and vulgar comments on my forum by adding blacklisted word list in Settings>Discussion>Disallowed Comment Keys but issue is that it if I assume rum as bad word and if I write any word like “forum” it stops me from commenting.
Any plugin which can work with bbpress to resolve this issue and spam can also be handled.
I should have mentioned this is a case where I have a bbPress forum linked to a BuddyPress group. I am viewing the forum inside a group.
I troubleshooted this and this is odd. The only plugins I have installed are bbPress and BuddyPress. Tried on two different default WordPress themes and getting the same thing with 2019 and 2020 theme.
Still getting the same results, I wonder if this is BuddyPress doing this hmm.
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
I would like change avatar style for media….480px responsive design which I attached screenshots.I use custom theme on my local server.I tried some of code in stylesheet but didn’t worked.
Default code about avatar and author section
#bbpress-forums li.bbp-body div.hentry {
display: block;
}
#bbpress-forums li.bbp-body div.bbp-topic-author,
#bbpress-forums li.bbp-body div.bbp-reply-author {
-ms-flex-align: start;
align-items: flex-start;
width: 100%;
margin: 0 0 16px;
padding: 0 0 16px;
border-bottom: 1px solid var(--color-divider);
box-sizing: border-box;
}
.vikinger-forum-reply-author {
-ms-flex-align: start;
align-items: flex-start;
}
}

hmmm…
Titles are not put in that part as default – bbpress uses the theme/page to do that, so I would not expect to see an <h2>
tag after the <div id="bbpress-forums" class="bbpress-wrapper">
do you have a theme or plugin that is altering bbpress display?
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
it shows fine in my test site
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
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
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
a combination of
bbp style pack
and
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php
transfer this to your pc and edit as required
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-reply.php
bbPress will now use this template instead of the original
will get you there, but if you want specific help, contact me via http://www.rewweb.co.uk/contact-me/ and reference this post
These fields are in a bbpress template so you need to amend that
find
wp-content/plugins/bbpress/templates/default/bbpress/form-anonymous.php
transfer this to your pc and edit
remove
<p>
<label for=”bbp_anonymous_website”><?php esc_html_e( ‘Website:’, ‘bbpress’ ); ?></label><br />
<input type=”text” id=”bbp_anonymous_website” value=”<?php bbp_author_url(); ?>” size=”40″ maxlength=”200″ name=”bbp_anonymous_website” />
</p>
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/form-anonymous.php
bbPress will now use this template instead of the original
Hi,
on the Topic Type and Topic Status drop down box, the font of the drop down selection is way too big and it looks cut off. I have installed bb style pack and went to Topic Reply Form to change the font size to 10 (default 12) but its still not reflecting it. Is there anyway to make sure the selection eg. “Normal”, “Sticky” etc fits nicely in the drop down box?
Thanks
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
The default is that they can do exactly this.
I’d suggest you check your settings in
dashboard>settings>discussion
@mike80222 – I’m trying to find time to think about this, but in the meantime 2 thoughts
1. the default for 5.6 issues is to install
Enable jQuery Migrate Helper
2. bbpress only has a text editor as standard in front end , so how are you doing the visual editor you are switching to?
This is the default behavior of bbPress. Unless a plugin already provides a simple modification of this behavior, the easiest way to customize this would be by overriding the /bbpress/form-reply.php
template part in your WordPress child theme.
hi @robin-w
i found problem root cause
“bbPress Simple View Counts” was the problem.
“Health Check & Troubleshooting” This plugin is very useful
Troubleshooting Mode is very good And a log was also left.
### Nginx Log
2021/02/18 00:35:57 [error] 13752#13752: *888 FastCGI sent in stderr: "PHP message: PHP Fatal error:
Uncaught TypeError: Unsupported operand types: string + int in /source/wp-content/plugins/bbpress-simple-view-counts/bbpress-simple-view-counts.php:95
Stack trace:
#0 /source/wp-includes/class-wp-hook.php(289): bbpress_simple_view_counts->show_views_topic_page()
#1 /source/wp-includes/plugin.php(212): WP_Hook->apply_filters()
#2 /source/wp-content/plugins/bbpress.new/includes/topics/template.php(3348): apply_filters()
#3 /source/wp-content/plugins/bbpress.new/includes/topics/template.php(3278): bbp_get_single_topic_description()
#4 /source/wp-content/plugins/bbpress.new/templates/default/bbpress/content-single-topic.php(33): bbp_single_topic_description()
#5 /source/wp-includes/template.php(732): require('/source...')
#6 /source/wp-content/plugins/bbpress.new/includes/core/template-functions.php(103): load_template()
#7 /source/wp-conten" while reading response header from upstream, client: 192.168.0.1,
server: fedora.h2code.cf, request: "GET /forums/topic/23118 HTTP/2.0",
upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "site.name"
### PHP-FPM Log
[pool www] child 13731 said into stderr: "NOTICE: sapi_cgi_log_message(), line 611: PHP message: PHP Fatal error:
Uncaught TypeError: Unsupported operand types: string + int in /source/wp-content/plugins/bbpress-simple-view-counts/bbpress-simple-view-counts.php:95"
[pool www] child 13731 said into stderr: "Stack trace:"
[pool www] child 13731 said into stderr: "#0 /source/wp-includes/class-wp-hook.php(289): bbpress_simple_view_counts->show_views_topic_page()"
[pool www] child 13731 said into stderr: "#1 /source/wp-includes/plugin.php(212): WP_Hook->apply_filters()"
[pool www] child 13731 said into stderr: "#2 /source/wp-content/plugins/bbpress.new/includes/topics/template.php(3348): apply_filters()"
[pool www] child 13731 said into stderr: "#3 /source/wp-content/plugins/bbpress.new/includes/topics/template.php(3278): bbp_get_single_topic_description()"
[pool www] child 13731 said into stderr: "#4 /source/wp-content/plugins/bbpress.new/templates/default/bbpress/content-single-topic.php(33): bbp_single_topic_description()"
[pool www] child 13731 said into stderr: "#5 /source/wp-includes/template.php(732): require('/source...')"
[pool www] child 13731 said into stderr: "#6 /source/wp-content/plugins/bbpress.new/includes/core/template-functions.php(103): load_template()"
[pool www] child 13731 said into stderr: "#7 /source/wp-conten..."
“bbPress Simple View Counts” This plugin is out of date.
I’ll try to disable it and think more about what to do.
Thank you again
Best Regards,
Hyunho
works fine on my test site – I can only suggest 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
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
@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 🙂
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
@mc9625 what have you got set in
dashboard>settings>discussion>bbPress Topics for Posts Defaults>Create a new bbPress topic in… ?