Search Results for 'bbpress'
-
Search Results
-
I have several forums on one WP website with only registered members added to them. Certain users cannot reply to a post, while everyone else can. All users were set-up at the same time and there are no differences in their profile/forum settings. But when some users try to post, they hit “submit” and nothing happens. Their reply window clears, but their post doesn’t display. They don’t get any error messages. It just doesn’t do anything.
When I tried to login and post as one of those users, I was able to reply with no problems. But they can’t do it on their end. So there isn’t anything wrong with their user account because it worked for me when I used it.
Could it simply be an Internet connection issue (but I’m not sure how that is because they can see the page without any problem)? Are there certain browsers or devices that you can’t submit replies from? I’m racking my brains to try to figure out what only particular users can’t seem to post when everyone else can, but it’s happened to more than one person, so I’d like to get to the bottom of it.
Are there any conflicts with bbPress for operating system, browser, mobile device, etc that could be causing the issue?
Topic: missing sidebar
Hi all
On my pages I have everywhere a sidebar show on the right side.
But on my bbPress forums, the sidebar is not show š
How can I set this up ?Thanks and best regards
FrankTopic: Embed Forum on Another Page?
Topic: BBPress not working on theme
Hey guys sorry to be the guy and post this I know its probably been post a milllion times. I am using the theme Shore for my Website because its just a theme that I enjoy. Bbpress & Buddypress seem to not want to work with this theme. I need a good forum and social section. I have tested by switching to 2016 themes it worked properly. I also enabled and disabled every plugin, even reverting back to early wordpress versions. Now is there anything I can do in the child theme to customize to get BBpress & buddypress working properly. I have basic knowledge of coding I did some in High School given enough time I can figure it out. Just getting pointed in the right direction would be huge.
My website http://www.wasdleagues.com/forums/
Let me know if you need more info I want to make this easy as possible for you.Many Thanks
MackHi all
I have installed the actual version of bbPress.
I am using Photolux theme and the forums are not readable
because of the color settings (font, background).
How can I change color settings of bbPress ?
Thanks and best regards
Frank UrayTopic: Unable to create forum
When I try to create a forum, I get the message “invalid post type.”
If I try to access the bbpress settings, it gives the error, “You do not have sufficient permissions to access this page.” I am the site admin, however.
I have completely removed the plug-in and reinstalled it. I had this problem with the previous version of WordPress and still with 4.4.
Any input is appreciated!
How can I make usernames and avatars in comments lead to bbpress user profiles?

I’m trying to create a php script to check if each bbpress topic is newer than certain date, so if its true, subscribe the author of that topic to that forum (I only have 1 bbpress forum so there is no need to check the id of that forum).
This is the code at this point:
<?php $args = array( 'post_type' => 'topic', ); $post = get_posts( $args ); $compare_date = strtotime( "2015-07-14" ); foreach($post->ID as $topic){ $post_date = strtotime( $post->post_date ); $post_author_id = get_post_field( 'post_author', $topic ); if ( $compare_date < $post_date ) { bbp_add_user_forum_subscription($post_author_id ,1687); } } ?>where 1687 is the id of the forum i want them to suscribe.
Any idea why is not working?
Thanks šHi all,
I am a newbie so I am sorry if this is an easy answer however I have not been able to find the answer or in the documentation.
I am setting up a forum on a small site and have installed bbpress. I am wondering how to remove the sidebar and add the correct sidebar for the forum options (login, register, search etc.) also is it possible to place these options above the forum? I was watching a tutorial on youtube which showed the sidebar added automatically after the install of bbpress but it may have been an older version.
I am currently using the latest wordpress 4.4, bbpress 2.5.8 and the esteem template. I did try to use twenty fourteen and twenty sixteen temprorarily but couldn’t add the sidebar under widgets as there was no bbpress sidebar.
Thanks,
Tom
Hi,
How can I change the default display name from bbpress? I’d like to display first_name instead of username by default, without members having to edit profile to get it.
Thanks
I’m a newbie, so please be kind. Is it correct that plugins (except ecommerce ones) are not available for wordpress.com sites? Is there any way to install bbpress onto a wordpress.com website?
Thanks.
Hi all, I need help. I’m very noob in “web”, but I was asked to solve this problem:
on a WordPress 4.3.1 with bbPress 2.5.8 site there is the problem shown on this pic
The three icons on the right are not shown properly. I’ve tried to analyze the problem, and I’ve noticed that for those buttons there are no corresponding classes/objects(?) in the “skin.min.css” file. Adding the missing code with Chrome editor (do not know how to call it), icons are shown, even if I can’t find corresponding “Content” for those three buttons, so I use other buttons icon just to make an attempt.
How can I solve? Are that css file static o dynamic generated? If the second one, is the following error linked with the problem?
I apologize in advance if I was not so clear.