Good evening guys, i have a problem viewing avatar in my bbpress forum.
In practice, I visualize the avatar twice but only for visitors/guests. Users logged in correctly view 1 avatar. How can I solve?
Here screenshots:
Thank you very much.
Good evening guys, i have a problem viewing avatar in my bbpress forum.
In practice, I visualize the avatar twice but only for visitors/guests. Users logged in correctly view 1 avatar. How can I solve?
Here screenshots:
Thank you very much.
Im not sure when this started, but you get a notification of someone replying to your forum topic the title is blank!
I checked the database ID to make sure its 100% BBPress, and it is.
Example notification with no title.

The notifications page with all the blank titles for replys:

I want to display with my own format the list of replies under each topics. I can manually get the topic details but I want the query to be the list of replies under this topic. Tried the post parent but it gets the topic also.
Greetings.
For large forums to function efficiently requires a shift in our perspectives perhaps.
Please consider https://theoneandonlysolutiontoeverything.net/forum/forums-3/forum/first-forum/
I am discussing BBpress with the World Summit 2019 0n Facebook.
I am a BBpress fan, but also a newbie and not very competent.
I feel that the summit would provide a great showcase for great forum software.
Is BBpress the right software for massive complex group discussions?
I am seeking someone/people from the BBpress community to join the Summit BBpress discussion on facebook.
Anyone?
Hi,
I’d like to restrict the reply to 100 cases, but is there a way?
For example, I want to make it .bbp-reply-to-link{display:none;} when comment becomes 100 or more.
However, since only 15 replies are displayed on one page, JS can not count comments on loading.
So, It’s best if you can do that with PHP settings…
What should I do?
Thanks.
Hi ,
how to determine if its a member or an admin ( by admin , i mean the administrator and keymaster levels ) ?
if not , where can i find a good documentation about bbpress template tags like wordpress’ one ?
TFYT .
Hello, i have a problem, i see a text before the text editor in bbpress.
The text is: “CONTENT string (0)”
How can i remove it?
WordPress: 4.9.8
BbPress: 2.5.14
Website: https://www.ahoraajedrez.com/foros/foro/ajedrez-de-elite/
Hello,
I’d like to share my workaround to fix the following problem:
After importing all topics and posts and forums and users from my old WebsiteA, I couldn’t see any topics inside my forums on my new WebsiteB. The counts were correct, but I could only see sticky topics inside each forum, nothing else.
I tried the built-in fixing tools, but that was a BAD IDEA. It broke my site every time I tried it (blank page on front-end without any error). The only way to fix it was to restaure the whole database!
So I looked at the database and found that a simple info was missing. All topics were set with post_parent = 0, while the corresponding postmeta _bbp_forum_id field was set correctly.
All that was needed to do is to update this post_parent field by fetching this meta value.
Here’s my working SQL script (of course do NOT FORGET to save your database first…):
UPDATE 'wp_posts'
SET post_parent = (
SELECT meta_value
FROM 'wp_postmeta'
WHERE post_id=ID AND meta_key="_bbp_forum_id")
WHERE post_parent = 0;
I also want to point something VERY annoying when using the WP importer. WordPress asked me to match every single forum user from WebsiteA with the dropdown list of users from WebsiteB, which is very stupid since I had imported all the users. They were all identical.
It literally took me an hour to select every user on the dropdown menu…
The user IDs were the same on both websites!! Why not auto-selecting???????
I hope some dev will see this and fix it somehow, because it sounds like something quite easy to fix 😉
Have a nice day
Hi, in bbpress plugin in my site the moderator roles the forum is not showing in dashboard, help me how to do and also moderator only edit his own forum not others
Ok, I have looked everywhere for a solution to this, from digging through the support forum to plugins. I can’t seem to find it, so I’m going to see if anyone knows how to fix this issue for my particular needs.
I have bbpress installed, and we use it for an interactive fiction game. I have auto subscription set up for all users using I need for the forum/topic subscription emails that go out to users to include the author who wrote the topic/reply. As it is, if I write a reply, I don’t receive a copy of it in my email – even if I am subscribed to the forum. This is the same for all users. My users would like to receive a copy of their own reply to a topic or post in their email along with the other subscription emails.
I am fully capable of editing PHP, I just need to know where to look and what I’m looking for in the subscription email setup.
Thank you for any help.