Search Results for 'bbpress'
-
Search Results
-
I’ve had nothing but problems trying to customize bbpress, so I’m just not going to use it. I WAS going to uninstall it and reinstall it to see if that would make my css changes take effect, but when I deactivated it I got this message any time I tried to visit any page on my site, “bbPress Like Button needs bbPress installed and activated in order to work.” So now I don’t want to reinstall it, I just want to get rid of it all together and be done with it. This has been more of a headache than it should be.
How do I get that error message to go away and get rid of bbpress? Please help.
Hello,
I’m pretty new to wordpress+bbpress (been working with it for a few days now). In the past I have used other forum boards, but since I’m using wordpress now I figured while the hell not try out bbpress ?
So far I like it, I’m still working things out but I managed to do what i wanted using google when I was hitting a wall.Now, what i’d like to do is change bbpress layout from this :

to something like this :

Even with some research I don’t know what/how to modify this. I have read the “Layout and functionality – Examples you can use” in the codex (and actually used one to get the forum list to be block instead of inline) but it doesn’t mention this kind of modification.
My html/css/php knowledge is really basic, and obviously not enough to do this on my own.
If someone could point me in the right direction I’d gladly appreciate it. Thanks !
Wordpress version : 4.4
bbpress version : 2.5.8-5815
theme used : vantageI 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 🙂