Maybe you should use ‘User Avatar’ as your member profile photo upload system.
Visit: https://wordpress.org/extend/plugins/user-avatar/
Desc: Allows users to associate photos with their accounts by accessing their “Your Profile” page that default as Gravatar or WordPress Default image (from Discussion Page).
I’ve now submitted this on trac. Here’s the ticket:
https://bbpress.trac.wordpress.org/ticket/1709
The support warning means the theme doesn’t natively support bbPress. You can add support or use shortcodes and still use bbPress. Here’s a link to shortcodes you can insert in a page. https://bbpress.org/forums/topic/bbpress-20-shortcodes
I don’t understand your question about plugins.
I run a community for bloggers and the theme I use allows users to log in, submit and favorite posts. It also include the ability to upload your own profile photo, I simply need to know how to connect this image to the BBPress avatars. All of the other information seems to pull from the same place. I would appreciate any help with this, my site is http://blogtrendschat.com. Thanks!
bbPress 2x REQUIRES WordPress as bbPress is now a true WordPress plugin. There is no way at all to run bbPress without WordPress.
You could always install WordPress in a subdirectory ‘community’ and then have the plugin base as forums, so you end up with site/community/forums/forum….
You may then be able to do some crazy fancy url rewrites to remove the community from the url, though that is also an area I am not familiar enough with to help out.
I’m not sure though if you run into other issues with installing WordPress in a subdirectory as I have never tried it before. I do seem to remember reading somewhere that people were having issues with subdirectory installs, though I could be wrong.
Hello guys,
I’ve tried to search the forum, but i couldn’t find a similar question. I’m sorry if this is a double post anyway.
At the moment i’m having a website that runs WordPress with a mingle forum. I’m no longer happy with this forum, so my decision was to make use of bbPress and I’m checking this out now.
The problem i run into, is that i cannot have the same slug for pages, as I use for forums. Let’s say the slug i want to use is called ‘gaming’. The permalink displayed here is http://www.domain.com/forums/forum/gaming/. Now i want to add a page to WordPress about gaming. In this case it will rename the slug to gaming-2, as if the slug was already used by another page.
When i enter the URL http://www.domain.com/gaming/ it does redirect me to http://www.domain.com/forums/forum/gaming/. But I want the WordPress page to show up on the first URL and this specific forum only on the later.
I tried to look some further and found out both WP pages as BBP forums were saved in the ‘wp_posts‘ table. Editing the ‘post_name‘ column here solves my problem, but it would be nice if other administrators, without database permissions could get this done too.
I hope I just miss something obvious here, would be great if someone can help me out!
Cheers,
Hedgehog
hi, what version of PHP is that wordpress using?
Great video tut, it help me a lot.
AWJunkies – Merry Christmas/Congratulations/Happy New Year! 
I look forward to your help here with our respective issues with bbconverter.
Thank you Andre. But Atahualpa donĀ“t “support” bbpress themes. Can I install a new one? Or only modify the css file.
Is the same “problem” for plugins? I would like to install a new ones.
Thanks a lot,
Alex
@tnwinn
The numbers represent topics/replies for each forum so if it says (3,4) that means there are 3 topics and 4 replies in that forum.
Also, I would suggest maybe upgrading bbPress to the latest nightly vs. as it does not use tables.
https://bbpress.trac.wordpress.org/browser/branches/plugin
download link is on the bottom of the page.
***BACKUP YOUR SITE***
The nightly beta has been just fine for me and others, but as always backup first.
Your right, your forums look horrible. I’m kinda hoping that the new theme built into the new vs. of bbPress might help you out.
Also, your theme is from a decent company, I’d also go over there and ask them for a little bit of help with the styles. There is nothing conflicting that I see, but for some reason your tables are all evenly spaced which is why the homepage looks so bad. The new theme does not use tables, so it might help.
Neolo7, try setting your permalinks to something other than default. You should at least have %postname%.
To add /forums/ to your menu, use the custom links option. Or create a page and use the [bbp-forum-index] shortcode, then add that page to the menu.
There is a glitch that is not bbpress related, but rather it’s custom post types related. If you theme relies on the class “current_page_parent” to highlight the current page, WordPress things any post type should keep your blog page highlighted, if you have one. Here’s a piece of code you can drop in functions.php to help:
// fix menus
function support_menu_item($menu){
global $post;
if (get_post_type($post->ID) == 'forum' || get_post_type($post->ID) == 'topic' || get_post_type($post_id) == 'reply')
{
$menu = str_replace( 'current_page_parent', '', $menu ); // remove all current_page_parent classes
$menu = str_replace( 'menu-item-169', 'menu-item-169 current_page_parent', $menu ); // add the current_page_parent class to the page you want
}
return $menu;
}
add_filter( 'nav_menu_css_class', 'support_menu_item', 0 );
Be sure to change “169” to the id of your menu item.
I just installed fresh latest WordPress + latest bbPress + several plugins (I have deactivated now) + Members plugin (a role manager plugin).
Create new roles of
– Forum Newbie
– Forum Member
The problem is when I trying to manage limit access to specific forum / post’s content it not work.
As sample for Forum A I limit access only to Admin, but others still can get it. Anyone have this problem before? I still trying some possible solutions.
bbPress 2.x doesn’t use the my-templates folder. 2.x uses the same theme your WordPress installation uses.
Basic question: Now that everything is installed and I’ve created my first forum (Welcome), where is my forum site? I’d like to point to it in my blog menu. Thanks
Basic question: Now that everything is installed and I’ve created my first forum (Welcome), where is my forum site? I’d like to point to it in my blog menu. Thanks
Just a note… I installed ver 2.1 (over the 2.0.2 install) of bbPress and I’m getting the same error.
Hello.
I just installed the bbPress 2.0.2 plugin on my newly installed WP 3.3 site. Upon activation of the plugin I get the error:
“add_contextual_help is deprecated since version 3.3! Use get_current_screen()->add_help_tab() instead”
I assume that this is an incompatibility with the PHP calls from the plugin to WP since ver. 3.3 depricated a lot of old PHP scripts.
Is there a way to fix this or at least have WP stop complaining about this?
Thanks!
Turns out I had a nesting issue, the above approach seems to work fine:
if(get_post_type() == ‘forum’ OR get_post_type() == ‘topic’ OR get_post_type() == ‘reply’) {
//user is viewing a forum page
}
Is there a function (or other method) available to determine if the current page is a bbpress related page (forum, topic, reply or other)? Something along the lines of the wordpress function is_page()
It would seem that bbPress uses custom post types, and I’ve tried this with no luck:
if(get_post_type() == ‘forum’ OR get_post_type() == ‘topic’ OR get_post_type() == ‘reply’)
Thanks
Testing this now, not having any weird compatability issues. I use a child theme of twentyeleven I made. I did notice however that I lost alot of css customizations on the forum. Did you go go with a tableless layout or something?
I only mention it because I was using forum Icons on the main forum page, and it’s kinda hard to position them now. Not a big deal or anything.
Hi. I’m trying to install this super awesome forum, but I think installation tutorial too short for me.
OMG1# Plugin activated, where is forum located??? http://mysite.com/forum http://mysite.com/forums – 404! Test forum been created in settings. Wtf?
OMG2# Found only this link working for just created forum http://mysite.com/?forum=test-1 But where is general page? Where is promised installer written in docs?
OMG3# NGINX on server, what next? Guess this is a main problem. And this: http://bbpress.org/forums/topic/mu-wordpress-bbpress-integration-with-nginx-rewrites#post-11686 seems not what should be because forum in /wp-content/pluging and this
“
location /forums/ {
root /home/YOURDIRECTORY/public_html/forums;
index index.php;
“
for what?
At this moment my forum is completely unuseable.
Thank you.
I’m thinking to merge the WP + BuddyPress + bbPress, but just maybe it still need more time until everything is smooth in integration.
I will follow this thread.
I would like to say thanks to for the latest bbPress release, but there is many way to get it the way I want it.