I just inherited the admin position for our club’s wordpress site, and am a total noob at this. I upgraded the to WP3.5 and BBPress 2.2.3 and the formatting went all screwy. I deselected the Twenty Twelve theme, and that fixed the menu/text formatting, but now when you go to the ‘Forums’ page it just has a link to ‘edit’ but doesn’t display the forums/threads/replies.
The forums are still there, I can see them from the dashboard, but I can’t get them to show up on the site.
Someone PLEASE help me.
Link… http://custerrodandgun.com/wordpress/
hi…,
my greet to everyone on this forum site. i know wordpress is a big site but it also have its plug ins. it’s awesome. great improvement.
thanks.
Iv’e copied all the defult files to my theme dir, but it’s still go to page.php.
Have you solved this?
I’m new to wordpress and bbpress, as far as now i have managed to built a forum.
http://bennjomy.com/support/
I am an html web developer, the forum setup for the support for my themes, but the title of the support page is forum. How to change the title from forum to support?
Please Help,
Thank you
I have the same problem, I even removed Jetpack (don’t need it) and still the fancy editor will not show up…
I looked into this in the past and having read a number of existing threads on the topic it looks like there is no way to change this.
For aesthetic reasons I chose to change from the default as “/forum/forums/” doesn’t look great so you can change it to “/bb/forums” or “/forum/discuss/” or whatever. Not ideal but trying to hack this to work could leave you in a whole world of pain (prob tricky to get right, and may break with future releases).
Hello everything looks good on the install, with one exception there is no submit button on the sitewide forums, so unable to post new topics.
WP Ver: 3.5
BBPress ver: 2.2.3
Theme: BP Columns ver. 1.5.3
site link: http://www.lcag.info/forums/
Have searched rather extensively for a solution but to no avail. Reinstalled the forums anew – dropping all bp tables from the db to remove any ‘leftovers.’ All to no avail.
Your assistance in resolving this problem is greatly appreciated.
~Respect
RevKev
Hello,
My WP website uses the Bangkok Press Theme. I’ve installed bbpress, but there is no sidebar appearing in the forum.
How can I add it?
I’ve already asked the creator of the theme, but he’s not familiar with bbpress, so I’m asking help around here 🙂
Here is my website : mm2013.rp050.ihecs-multimedia.be/wordpress/forums
Thank you
This is bbPress here, you want BuddyPress over here https://buddypress.org/ 🙂
This support forum is specific to bbPress plugin for WordPress.
I suggest you have a search of the WordPress Supports forums here and put a post up there if you do not find an answer. https://wordpress.org/support/
Stop using bbConverter, it does not work and is no longer supported by the developer.
Use the import tool that comes with bbPress 2.x, you can find this in your WordPress Admin Dashboard under ‘Tools’ -> ‘Forums’ -> ‘Import Forums’
What specifically are you trying to change about the widget? It’s usually not a good idea to directly edit bbPress files, as your changes will be lost next time you update bbPress for security fixes or feature improvements.
99% of the time, there’s a simple way of changing things without hacking plugin files.
Something like this should get you going:
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => 'false', 'order' => 'DESC', 'post_parent' => 'any', 'posts_per_page' => 5 ) ) )
bbp_get_template_part( 'bbpress/loop', 'topics' );
I don’t need help removing the sidebar now, I decided to use the Elbee Elgee theme with the built in BBPress sidebar removal… thanks for the help… 🙂
The answer to change the avatar size is located here
plugins > bbpress > includes > common > widgets.php
I think that this is an answer: https://bbpress.org/forums/topic/how-to-read-bb_topicmeta/
Awesome 🙂 Love BBPress.
Awesome, that did it for me too – thanks! For anyone using bbPress 2.1.2 by chance, this file is located at bbpress/bbp-includes/bbp-common-template.php
Or you can go through all of the theme files and remove get_sidebar.
and
The best way to remove a sidebar is probably to just use CSS to .sidebar { display:none }
Will that remove the sidebar from the entire blog? I only want to remove the sidebar from the forum page, not the other pages…
Custom Fields (Meta Data, Meta Boxes) – do they exist for BBPress 1.0?
I mean something like `get_post_meta();` in WordPress – do threads or single posts support them?
You could just use css maybe? It allows you to quick switch back in case you need it, or if you need it on certain bbPress pages maybe.
I did the ‘display:none’ in catch-box theme but didn’t work for me. I need to remove the’get_sidebar’ from your template, BBpress, or catch-box theme ? Thanks.
Because bbPress is using custom post types you could use: https://codex.wordpress.org/Class_Reference/WP_Query.
See the part about taxonomy parameters, you can set the post_type to whatever you want.
The best way to remove a sidebar is probably to just use CSS to .sidebar { display:none } (depending on your themes markup) – it is quick and allows you to quickly add the sidebar back in should you need it later on.
Or you can go through all of the theme files and remove get_sidebar.
Good luck!