Hej. I have a Problem with my Page. My Theme is Impreza.
Normal Users see that there are notifications on their Page but if they click on them they will not show. Admins can see them.
If i Change the Theme to Twenty Twenty the Notifications Show for normal Users.
If you have an Idea how to show them on my Theme would be Awesome.
I installed bb press on my wordpress site, created the register screen, however when the user enters in the username and email there is no email received.
It is not in the junk email and all my other wordpress emails seem to be working. The only thing not working is the bbpress activation email
Hello, ive deleted an admin user with the Keymaster statut on BBpress (Version 2.6.5).
Unfortunately, i cant attribute the “keymaster” to another admin user.
I cant manage the forum section in WP.
How can i fix this ?
Thx.
Seb.
Hello. 🙂
I’m using the latest version of bbPress and I would like to know if there is a way to refresh a page twice when I click its link.
Let’s give an example:
I’m in the topics list.
I’m about to click on one random topic.. It successfully loads the topic and everything goes fine.
But I’m doing some tests with my own plugins and I need to refresh that page twice.
Like – “When you successfully load the page, load it again, just once more.”
Is there a function for doing so? Like adding a refresh function to the topic pagination function?
If you guys could help me out, would be appreciated 🙂
Thank you!
Currently, it seems that only admins can send closed post settings, but it would be great if you could add a setting that allows participants to send a closed topic when they post.
Thank you.
Hello all
I have problems with bbpress forum discussions. Users can not save the forum discussions. Especially there are problems with hyperlinks. Sometimes they are able to save, sometimes not. Accroding to our understanding the problems occur when they copy paste text.
Saving works when they use Ipad, but they have much errors with windows setup.
What could be ideal setup for bbforum users avoiding errors? Typical error is forwarding 404 page after they try to save message.
Thank you in advance if you can give some assistance. We would like to keep bbpress our primary tool
What is [User permissions][Forum permissions] Difference?
@robin-w
Hello,
I have the latest versions of WordPress, bbPress and bbp style pack
Users no longer receive email when they subscribe to a forum or topic.
The email is sent to the administration email but not to subscribers.
It’s not a mailbox problem. When there is a quote, it works.
It is not related to bbPress 2.6.5
Does anyone else have the same concern, is there a setting that I missed?
Thank you for helping me and sorry for my rough English.
It seems that currently only admins can send closed post settings, is there a setting that allows participants to send topics in a closed state when they post?
Hello all.
I’ve been editing the bbPress 2.6.5 plugin a bit, in order to fit my use.
As of now, I just wanna track down the topic_id and the author_id.
That’s pretty simple, given the set of functions available for the community.
So I managed to write this little code here:
global $author_id;
global $id_of_topic;
$id_of_topic = bbp_get_topic_id();
$author_id = bbp_get_topic_author_id($id_of_topic);
The ID of the Topic is successfully retrieved, let’s say it’s “18446744073709551615”,
but once I pass that variable to bbp_get_topic_author_id(), the output of $author_id is 0.
Now that’s pretty weird considering that if I pass the number 18446744073709551615 directly into that function, everything goes fine, I retrieve the author_id successfully.
One thing I noticed tho, is that printing out $id_of_topic, once with %d and once with %u (just after I call bbp_get_topic_id() ), I get two different values.
– %d = 0
– %u = 18446744073709551615
Pretty weird.. How can I somehow pass the %u to bbp_get_topic_author_id()?
Thanks in advance! 🙂