Had to add an extra rule to make this work for continuation pages of the front page:
“^/page/([0-9]+)/?$” => “/?page=$1”,
There appears to be an issue still, within BBpress 1.02 this time: when on a continuation page, the link for “Page 1” does not include a “1” but the number of the current page – so the link does nothing and does not return to the home page.
There are some WP plugins which should work without any changes, those are the plugins which do not interact with the actual content, like google analitycs or super cache. Plugins which need the interaction will probably not work, or at least not as expected, but if you are willing to do some coding, in the long run it might be easier to adapt an existing WP plugin to be used with BB than to support two different plugins, one for each platform.
tried it and it doesn’t work……..
I am praying you are right. This feature is extremely important!
Since Sam stepped down as bbPress lead a short while ago, we haven’t heard who will be replacing him (or how many resources Automattic will devote to the product). Hopefully we’ll get an update sooner rather than later!
Do we have an updated status on bbPress Channels yet?
The reason for me asking this question, is the gazillion topics in this forum about integrating WP with bbpress. A lot of users have problems doing it. I tried it as well on my localhost, and couldn’t get it to work. I was also thinking what is the greatest benefit, so that’s why I asked.
I was wondering, if you integrate WP with bbpress, does that mean that plugins that work on bbpress will also work on bbPress?
Like, WP has this very cool, SEO for all plugin, you can edit page title, description etc. will this plugin work for bbPress topics?
If WP plugins don’t work for bbPress, then I really don’t see any great benefit for going through all that trouble of integrating…
<?php
/*
Plugin Name: Remove Links (conditional)
Description: Removes links for non-registered users. Based on <a href="http://ckon.wordpress.com/2007/07/12/bbpress-plugin-bb-tweaks/">bb tweaks</a>.
Plugin URI: https://bbpress.org/forums/topic/hide-links
Version: 0.01
*/
function bb_strip_links( $text ) {
global $topic;
$forums = array(
1,
2,
3,
);
if ( !in_array( $topic->forum_id, $forums ) )
return $text;
if ( !bb_current_user_can( 'write_post' ) )
$text = preg_replace('|<a (.+?)>(.+?)</a>|i', __('(Login or register to download)'), $text);
return $text;
}
add_filter('post_text', 'bb_strip_links');
?>
Can anyone tell me what this means and how to fix it?
Warning: include() [function.include]: Filename cannot be empty in /home/harrismarine/harrismarine.co.nz/bbpress/bb-includes/functions.bb-template.php on line 45
Warning: include() [function.include]: Failed opening ” for inclusion (include_path=’.:/usr/local/php5/lib/php:/usr/local/lib/php’) in /home/harrismarine/harrismarine.co.nz/bbpress/bb-includes/functions.bb-template.php on line 45
For normal site-users it can be nice, that they’re logged in at WordPress if the’re registered and logged in at bbPress. The WP comment form is simpler for the logged-in-users, they don’t have to type their name, mail adress and homepage. If you configure your WordPress in a way which requires registration of commenters, there is an additional benefit for administration. There are always some hand-registered SEO-spammers, and it makes you less work if you have only one user database. The mapping of WP user roles to user roles in bbPress may save some work too.
For most installations, the integration isn’t needed. Always remember that the bbPress installation with integration is significantly more complicated than a normal bbPress installation and may lead you to incompatibility issues with future WP releases. Think about it before doing. I love it, but it is a little hard sometimes…
I browse the bbpress forums from time to time. In the dark cold winter I hope to work through a few books and try them out.
If you’re looking for support for a lot of bbPress plugins, your best best is usually to stay on the 0.9 branch. 1.0 won’t have a lot of plugins supported for months, if at all…
Many people want integration so that your users can log in to either bbPress or WordPress and not have to log in again when they switch from blog to forum, or forum to blog.
Others want ‘deep integration’ so they can use WordPress functions (like get_sidebar, get_footer and get_header) in their bbPress installation. Sometimes they want deep integration to make the two themes look similar or identical. Sometimes they want to be able to pull WordPress information into bbPress or vice-versa.
I integrated a forum with a blog one time but I normally have no use for it. It’s not worth the trouble for me, and I don’t need integration of users or functions.
Yes. My dashboard looks like that. But I can’t see or activate new themes I’ve uploaded per the directions on the bbpress.org site. I can’t make color changes or change the look at all.
Can someone tell my why its a great thing to integrate these two?
I just asked for a feedback on the site as per the design and implementation of WordPress & bbPress. And my main target are Indian students only. If you want to contribute, then why not sign up? I would love to see you in NAP forums.
amylmc – does your dashboard look like this?
http://chrishajer.com/bbpress/bbpress-1.0-dashboard.png
If it doesn’t, then the user you’re logging in as is not the keymaster and does not have all the proper permissions.
Marius- please stick to one topic per post. I thought this was about widgets then I see this comment about removing the tags bar. If you want to remove the tags, just look in your template files for wherever the tag cloud is displayed, and remove that code. I don’t see a link to your forum so I can’t tell you exactly what to remove.
I think tags are normally attached to each topic, and also to the front page, and you would need to remove the places where tags can be added as well. Just find those sections in your template files, and delete them or comment them out. Make a copy of all the files first in case you make a mistake and need to revert back.
Have you tried Polldaddy for bbPress?
https://bbpress.org/plugins/topic/polldaddy-for-bbpress/
It says compatible up to 1.0-alpha-2 but maybe it will work? If not, maybe you can find someone to fix it for you.
I’m fully aware of the theme I’m using. I just want to know how to remove the tags. Their just ugly and unecesary.
Last time I tried out BB Polls and it didnt work. Users said it were made for an older version of bbpress. Is there any poll-plugin that works for BBPress v1.02?
My forum is growing, and I really feel the need to have polls now.
“Currently, plug-ins for both WordPress and bbPress, WordPress’ forum software solution are available.”
*sigh*
Apparently the bbPress plugin is still in alpha, as of about 10 days ago:
http://forum.gigya.com/forum/Default.aspx?g=posts&m=1619
The WordPress one is released though, so maybe it’d be fine under a WP/bbP integration setup
ok, I made a fresh installation of 0.9.6. in another directory. the only difference was the prefix. both installations use the same database.
updating the new installation to 1.0.2 worked fine and without any problems. both bb-config.phps are identical.
but upgrading the older installation, which I upgraded some times from earlier bbpress versions and which has some plugins, does still not work. “ERROR: Could not establish a database connection”.