I should mention that the topics I’m having this issue with were migrated from vBulletin. Not sure if that matters.
thanks!
Anyone else having this problem?
I am experiencing exactly the same problem. I’ve set up wordpress (3.3.2 de) one or two weeks ago, bbpress last sunday. But I’ve nothing migrated.
In the role of a webmaster I can view and edit everything in the forum. During the first tests I changed the visibility to private and back. As a contributor I can only post a new entry. But I can’t even view my own posts. This was on the first day. I deactivated bbpress.
Today I reactivated bbpress. Forums and posts seemed to have gone. I set up a new forum and moved the old posts (topics) to it. With/without allowing anonymus posting everything worked fine for the contributor’s role.
But after setting the visibility to “private” (later to “hidden”) and than back to “public” the same error occurs: contributors can see the forum from the outside but none of the topics/posts.
http://zukunft-stadtbahn.de/forums/forum/redaktionsbesprechung/
Anonymous posting is not allowed, visibility is public
We need to have an internal forum for the contributors to discuss our articles before publishing them.
Who can help? Thanks in advance
Jörg
We are also experiencing this same problem on our site. If we set a forum to “Hidden” and then make it “Public” later, none of the associated topics appear inside the forum. We’re using the bbPress 2.0 plugin with BuddyPress 1.5.2, but are using the bbPress standalone forums rather than group forums.
I’m going to investigate this over the next week or so and will post back if I find anything.
Hey everyone, we had to hire someone to fix this problem for us. Apparently it had something to do with the “roles” that were set in our Vbulletin forum previously. They weren’t carried over correctly or something to that effect. If you’re interested in using this person, he charges $100/hour, but got our entire forum up and running properly in one hour. Let me know if you want his contact info and I’ll post it here ( I need to get it from my business partner.)
Thanks,
Jenna
Hi Jenna (Miniflowers), congratulations But my troubles with bbPress seem to be different: I never used Vbulletin or BuddyPress. As will_c wrote: the error occurs by changing the visibility.
Add me to the list of complainants. A whole night and a day setting this up, only to discover the the most fundamental features, allowing users to be able to read and add, is turned off, and I can’t get it turned on. I am administrator and the topics and add links are hidden even from me.
Is anyone still having this issue? On my site, the first post in a topic won’t appear to forum participants, but the replies will appear.
-
This reply was modified 12 years, 1 month ago by loza16.
@loza16 did you find a solution? Mine is the same, forst topic does not display to participants but the admin can see them….
Hi!
I found some solution for this problem. Only you need to put this code on functions.php of your active theme:
function custom_bbp_show_lead_topic( $show_lead ) {
if(!current_user_can('manage_options')){
$show_lead[] = 'true';
}
return $show_lead;
}
add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );