This is not a feature in bbpress but can anyone please help me to get to the solution?
I would like to assign Topics and Replies to other Authors/Users to respond them.
I hope there a way this can be achieved.
Please help.
This is not a feature in bbpress but can anyone please help me to get to the solution?
I would like to assign Topics and Replies to other Authors/Users to respond them.
I hope there a way this can be achieved.
Please help.
WordPress 4.9.5 bbPress 2.5.14 bbPress Notify (No-Spam) 1.18.1
I have no idea what is happening. I assign a forum role in the user account but when the user visits the forum, the role is just deleted and replaced with -No role for these forums-. Auto role is not checked in settings. Why aren’t they “sticking?” Any help or insights would be really appreciated. Thanks.
My client would like me to find a way to show the users that are in a particular forum topic conversation. So if you’re in a thread, there’s a bar or something at the top or bottom that shows all of the avatars or names of the people in that have commented in that thread. I’m not sure if there is a plugin for that or a template I can modify to make this happen.
HI, I checked and tested everything on my site, but no matter what the user is not getting their registration email. I get the notification that my site has a new user, but the user never gets it. I tried using SMTP plugins etc, but no luck. Please help!
Hello,
I have a problem with bbpress, my member after creating a discussion can not edit this topic again! Please support me. Thanks very much.
Thanks!
Hi guys,
any suggestion how to hide the members in bbPress from being listed to all other members? This is a data protection issue. One should be able to be a registered member without being exposed to all others.
Hi BBPress experts,
This my first post here. I have created a cool forum using BBPress. It’s working fine. But I am having an issue. In my forum homepage all the user avatars are not scaled properly. They are really large like the images of profile page. How can I set set scaled image in 14X14 ?
Dear friends,
My forum index page
https://www.sobrecroacia.com/forums/
is indexed on google with title “Forum files” (Foro archivos) and I would like to change it to something in relation with my forum subject.
Please, how can I do that?
Thank you!
Hello there,
I am trying to remove email field from annonomus reply form. I have commented out this section from the template file but when I am trying to post annonomusly it says
ERROR: Invalid email address submitted!
What have I done wrong?
This is an extension to https://bbpress.org/forums/topic/bbpress-like-reply-notification/#post-191588
There is a limitation of BBpress when you have a forum and try to send reply notifications to the users.
I will illustrate this in an example:
New thread timeline:
1. post_1_author_A_topic_start
2. post_2_author_B
3. post_3_author_C_reply_to_post_1
4. post_4_author_D_reply_to_post_2
What my program does (let’s see it as a blackbox):
User A is notified that B (!) and C replied to his post.
User B is notified that user D replied to this post.
The wrong notification is that User A is notified that B commented on this post. However, B never pressed on BBpress reply to A.
The problem:
How to differentiate between
2. post_2_author_B
3. post_3_author_C_reply_to_post_1
You cannot do it by looking to the tables wp_posts and wp_postmeta.
Explanation:
In wp_posts, the only difference between 2. (false reply) and 3. (the real reply) is the menu_order column. And this seems to be used just for the time order of posting. So not enough data to see the different between 2. and 3.
Now let’s take a look on wp_postmeta. 4. is a reply to 2.
SELECT * FROM wp_postmeta WHERE post_id = “4”
4
_bbp_topic_id
1
4
_bbp_reply_to
2
So, in the case of a standard reply (such as 4.) _bbp_reply_to helps you identify the parent.
However, this is not the case of 2. and 3. wrt 1.
SELECT * FROM wp_postmeta WHERE post_id = “2”
2
_bbp_topic_id
1
SELECT * FROM wp_postmeta WHERE post_id = “3”
3
_bbp_topic_id
1
_bbp_reply_to doesn’t appear anymore.
So we cannot differentiate 2. and 3.
The only difference is the reply button , but this information is not registered in the DB.
Neither extra categorization (adding extra layer to the BB forum) won’t solve the problem.
Is there any way to differentiate 2. from 3. ?