And I used this advice of yours …. nothing happened
https://wordpress.org/extend/plugins/bbpress-custom-css-file/
My friend’s website is
http://www.theReviveChallenge.com
I have created a username and password for you to see the forum
username jared
password test123
It looks to me that your theme is unable to find the BBpress templates. You could try copying the files from the BBpress (twenty ten) theme to your current theme folder. Than make a page called “forum” or whatever you want and put [bbp-forum-index] in it. This is for 2.0.2.
Furthermore, what you could also try is activating the bbPress (Twenty Ten) theme and put “template: Arras Classical Gamer” in it’s style.css (or whatever it’s actually called). I don’t know if that’s the right way of doing it, probably not, but that’s how I got it to work with my theme.
I have two sites on my wordpress network, http://www.pigsfeetproductions.com and http://www.crashedgamers.com. These two sites share the same database, but are hosted on two different servers. I want their forums to be integrated (ie when I post on pigsfeetproductions’s forums, it will automatically appear on the crashedgamers one and I want the users to be the same too if you wouldn’t mind helping me there too). Can anyone help me set this up? I have a decent understanding of the basics of bbpress, wordpress, and mySQL databases, but I just can’t figure out how to get this to work the way I want it to. All help is great appreciated.
Thanks
Rob
At some point in the next 3 years BBpress 2.1 will be released (being dramatic here) and when it does my plugin will tell me to upgrade. How ever I have customized the plugin its self in terms of adding to the core files its self and adding in a couple new features…
How would you guys suggest upgrading BBpress when it does get released so that it doesn’t break my site, disturb my non existent users or other wise do other damage?
please ignore – it was in my theme stylesheet, not bbpress
HI,
I am having the same problem:
I am running bbpress 2.0.2 under BuddyPress and although my permalinks are nice and pretty :
Code:
/%category%/%postname%/
The permalink used in the breadcrumbs is this:
http://www.foodiesplace.com/?attachment_id=431
(no idea where it got this from since the page does not exist)
The breadcrumb link should look like this:
http://www.foodiesplace.com/en/facecook-forum/
Any ideas anybody?
Thanx
Last week I finished the conversion of my Forum from bbpress1.02 to the WordPress BBpress2.0 plugin. The forum is quite big (about 3.000 users, 9.000 topics and 130.000 posts), so I was very happy evering went fine. But now my users are complaining because some functions they had before, now are missing.
Most requests I get are about unread posts:
I would like to mark the uread post for each user, like the “Show Unread Posts” plugin for BBpress 1.02. As far as I know there is no BBpress2.0 plugin.
Does anybody know if there are plans to make such a plugin. Or how to fix this in another way?
Do you have active the bbpress anti spam plugin?
I found out that, in my case, the problem was caused by that plugin and
I have solved it by turning off the bbpress anti spam plugin (https://wordpress.org/extend/plugins/bbpress-antispam/)
Is it possible to change the image source for the avatars to the 150px version (bpfull) that is also being made by buddypress? The problem I’m having right now is that bbpress takes the 50px thumb image while my bbpress avatar size is 100px resulting in a fuzzy looking image.
The problem seems to be here in /wp-content/plugins/bbpress/bbp-includes – however I do not know how to solve it:
/** Reply Content *********************************************************/
if ( !empty( $_POST ) )
$reply_content = $_POST;
// Filter and sanitize
$reply_content = apply_filters( ‘bbp_new_reply_pre_content’, $reply_content );
// No reply content
if ( empty( $reply_content ) )
bbp_add_error( ‘bbp_reply_content’, __( ‘ERROR: Your reply cannot be empty.’, ‘bbpress’ ) );
Why is it NOT picking up the content of the edited post?
Having looked into this a bit further, my main problem is described in a new post.
– Categorised private topics are not visible.
Categorised private topics are not visible in the
As far as I can see, when I don’t catagorise the forums, I can manage access to the forums using the “Members” plugin.
I have spent hours looking through new and older posts on related topic and tried different approaches, including using the “Members” and “User Role Editor” plugins. This is related to the WordPress bbPress plugin.
I understand that changing the forum visibility forth and back is risky, so I have avoided that. I have only a limited amount of other plugins installed.
I am not going to list all the issues I have had, but instead hope that someone (if any) who has this up and running can reveal the secret.
Here is what I try to acheive:
Some forums should only be available to some users. My plan is to have two users, “Forum Participant” and “Forum Customer”. “Forum Participant” is default, and some users will manually be upgraded to “Forum Customers”. Some forums should only be visible to “Forum Customers”.
Any comments would be highly appreciated.
I get the above error when I simply edit a post (even my own posts). The post is there, I edit it, then when I hit “submit” I get the error.
Other than that I finally have BBPress working very well with my Theme:
http://www.stratoliner.me
I do use the bbPress-recaptcha plugin.
I’ve disabled Akismet as I use IntenseDebate for the rest of my site and, unfortunately for everyone, ID doesn’t have any bbPress integration.
It’s still a Taglogic issue, as far as I see.
Anyways, looks like it is unlikely to get fixed in core.
Oh, this is if I’m using the bbPress “integrated” with BuddyPress. As in I installed bbPress through BuddyPress. It seems this muddies the waters a bit. I think I’ll just wait
[root@test plugins]# find . -name bbpress
./buddypress/bp-forums/bbpress
./bbpress
./bbpress/bbp-theme-compat/bbpress
./bbpress/bbp-themes/bbp-twentyten/bbpress
[root@test plugins]# ls buddypress/bp-forums/
bb-config.php bp-forums-bbpress.php bp-forums-loader.php
bbpress bp-forums-bbpress-sa.php bp-forums-screens.php
bp-forums-actions.php bp-forums-filters.php bp-forums-template.php
bp-forums-admin.php bp-forums-functions.php
[root@test plugins]# ls bbpress (this is a svn sync)
bbp-admin bbp-languages bbp-theme-compat humans.txt license.txt
bbp-includes bbpress.php bbp-themes index.php readme.txt
[root@test plugins]#
Yep thats correct. You can pick and choose the args if you don’t want to reset all of them.
function custom_forum_breadcrumb( $args ) {
$args['sep'] = ' | ';
return $args;
}
add_filter( 'bbp_get_breadcrumb_pre', 'custom_forum_breadcrumb' );
I made a filter that set’s the before, after, sep & root_text for the breadcrumbs. Take a look, writes over the ‘bbp_get_breadcrumb_pre’ filter found on line 1553 of bbp-includes/bbp-common-template.php
// Change bbPress bread crumb separator.
function filter_bbp_breadcrumb( $args ) {
$my_args = array(
'before' => "n<div class="subnav bbp-breadcrumb ">n <ul class="nav nav-pills ">n <li>",
'after' => "</li>n </ul>n</div>nn",
'sep' => is_rtl() ? __( "</li>n <li>", 'bbpress' ) : __( "</li>n <li>", 'bbpress' ),
'root_text' => "Support"
);
$args = wp_parse_args( $my_args, $args );
return $args;
}
add_filter('bbp_get_breadcrumb_pre', 'filter_bbp_breadcrumb' );
Unfortunately I don’t know of a plugin that does that for bbPress 2.x.
I am aware of this one https://wordpress.org/extend/plugins/cubepoints-buddypress-integration/ however it also requires BuddyPress.
Oh, my apologies – I assumed you were on bbPress 2.x.
I’m not very familiar with 1.x (stand-alone) so I can’t really say I know of a solution for that.
My apologizes – I gave you the wrong link (the the non-plugin version of bbPress).
Here is the correct one:
https://bbpress.trac.wordpress.org/browser/branches/plugin
To my knowledge you should just be able to install 2.1 (drop the bbPress folder into your plugins directory) and BuddyPress should just “find it”.
Hi all.
Setting up a wordpress site for someone and I’ve decided to use bbpress for a particular section as it seems best fitting for what we need.
I simply want the forums to be for members only, for example a page simply stating ‘you must register blah blah..’ would be fine.
Is there an hidden admin panel for bbpress I’m not seeing? All I am aware of is /wp-admin/options-general.php?page=bbpress
I felt I’d just post a new thread as most things I came across were > a year old. I read the newer versions work much improved out of the box than before, so hopefully this is pretty easy.
Thanks,
I have installed BuddyPress on a new WordPress site because I want to replace my current forum site with something like this one. I installed bbpress from the BuddyPress>Components page and installed the site wide forums plugin. It tells me the most current version is installed anyways. When I go to the “forums” page, I simply have an edit link to create it. I can preview a forum I created, but when I try to move up in the hierarchy to the Home>Forums page, again I am just given an edit button link. I believe the “Forums” page is supposed to automatically created from what I have read on here already. I also tried to reset my permalinks, and that didn’t make a difference. I tried resetting my theme to twentyeleven, the default buddypress theme, and a third theme. I’m guessing I’m just missing a simply step because obviously this plugin works for most everyone else.
Actually, no, it doesn’t — first 4 folders are bb-admin, bb-includes, bb-plugins, and bb-templates, followed by a ton of un-foldered PHP files. It matches where I downloaded it, from this page:
https://bbpress.trac.wordpress.org/browser/trunk
Did I download the standalone and not the plugin? (To back up a bit: I’m trying to integrate bbPress and Buddypress with an already existing WordPress site.)
Okay, last series of questions for a bit.
How do I properly install 2.1 into a developmental BuddyPress site? I want to launch a site with everything, WordPress, Buddypress, and bbPress has to offer. Today I run a site that is based on Vanilla Forums (grumble) and another site that is phpBB.
The reason I ask so much about video and images is because these sites are based around music so with music you have a ton of photos of performances and video. I’d like to make it as easy as possible for users to share these media types in Forum posts since that is today where they classically have shared them.
Does this seem like a sound(pun?) approach or am I missing something?