Search Results for 'bbpress'
-
AuthorSearch Results
-
September 28, 2009 at 1:23 pm #79872
In reply to: Benefit of integrating WP/bbPress
chandersbs
MemberI was thinking that integrating bbPress with WP, doesn’t let you benefit from most WP plugins, why to integrate at all?
September 28, 2009 at 12:53 pm #79871In reply to: Benefit of integrating WP/bbPress
chrishajer
ParticipantIntegrating does not help WordPress plugins work on bbPress. If that’s all you’re looking for, you probably don’t need integration. If you’d like to ensure that WordPress plugins work in your forum, maybe you want a forum plugin for WordPress, not bbPress.
September 28, 2009 at 12:51 pm #79870In reply to: Benefit of integrating WP/bbPress
chrishajer
ParticipantThere is a bbPress SEO plugin too:
http://www.finalwebsites.com/forums/topic/new-plugin-bbpress-seo-tools
[EDIT, UPDATED LINK]
September 28, 2009 at 12:48 pm #73764In reply to: How to translate bbPress to another language
chrishajer
ParticipantThis is the best source of information I know of, and I don’t see a greek translation here:
http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages
September 28, 2009 at 10:02 am #73763In reply to: How to translate bbPress to another language
skafetzo
MemberHi all,
is there a greek version of bbPress available now, or do I have to follow the above procedure?
Thanks
Stella
September 28, 2009 at 9:58 am #79888In reply to: Who can shed some light here?
brad_langdon
MemberI figured out that this error only pops up when CK’s BBPress Polls plugin is activated?
Does anyone out there know how to figure out which part of the plugin to alter to keep these two plugins working in harmony?
To clarify… the error pops up when I click NEW PM using the BBPM plugin from NightGunner but only when BBPress Polls is activated.
September 28, 2009 at 8:46 am #65651In reply to: bbPress AND Lighttpd URL rewrite rules
jcw
MemberHad 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.
September 28, 2009 at 6:49 am #79869In reply to: Benefit of integrating WP/bbPress
Mark-k
ParticipantThere 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.
September 28, 2009 at 5:23 am #79516In reply to: bbpress post topic gives error
middlepath
Membertried it and it doesn’t work……..
September 28, 2009 at 4:41 am #78454In reply to: bbPress MU
grassrootspa
MemberI am praying you are right. This feature is extremely important!
September 28, 2009 at 12:09 am #79885In reply to: Link Cloaking
johnhiler
MemberYou could wrap your links in code like this:
https://bbpress.org/forums/topic/check-if-a-user-is-logged-in#post-19953
September 28, 2009 at 12:08 am #78453In reply to: bbPress MU
johnhiler
MemberSince 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!
September 28, 2009 at 12:06 am #78452In reply to: bbPress MU
Rohan Kapoor
MemberDo we have an updated status on bbPress Channels yet?
September 28, 2009 at 12:06 am #79868In reply to: Benefit of integrating WP/bbPress
chandersbs
MemberThe 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…
September 27, 2009 at 11:28 pm #79883In reply to: Link Cloaking
Adam Harley (Kawauso)
Member<?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');
?>September 27, 2009 at 10:28 pm #31900Topic: Who can shed some light here?
in forum Troubleshootingbrad_langdon
MemberCan 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
September 27, 2009 at 10:21 pm #79867In reply to: Benefit of integrating WP/bbPress
Elias
MemberFor 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…
September 27, 2009 at 8:08 pm #79703In reply to: Need A Project ShowOff
kernow
MemberI 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.
September 27, 2009 at 7:34 pm #79840In reply to: Need poll for version 1.02 now!
johnhiler
MemberIf 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…
September 27, 2009 at 6:46 pm #79866In reply to: Benefit of integrating WP/bbPress
chrishajer
ParticipantMany 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_footerandget_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.
September 27, 2009 at 6:05 pm #79823In reply to: Presentation Admin panel not showing
amylmc
MemberYes. 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.
September 27, 2009 at 4:52 pm #31898Topic: Benefit of integrating WP/bbPress
in forum Installationchandersbs
MemberCan someone tell my why its a great thing to integrate these two?
September 27, 2009 at 4:43 pm #79702In reply to: Need A Project ShowOff
Ashish Kumar (Ashfame)
ParticipantI 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.
September 27, 2009 at 4:08 pm #79822In reply to: Presentation Admin panel not showing
chrishajer
Participantamylmc – 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.
September 27, 2009 at 3:54 pm #79326In reply to: Widgets for bbpress?
chrishajer
ParticipantMarius- 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.
-
AuthorSearch Results