Try the other way round, skinning bbPress with your WordPress widgets. Under deep integration, the sidebar functions might work fine. Maybe. bbPress isn’t light enough to just be invoked by a small piece of code in a widget though. That said, there is a WordPress plugin for displaying the latest posts and such from bbPress.
Something like:
function no_login_notice( $a, $b ) {
if( $b !== 'You must <a href="%s">log in</a> to post.' )
return $a;
}
add_filter( 'gettext', 'no_login_notice', null, 2 );
should work I think
Thanks, I’ll look it up.
I wanted to remove or replace that with an actual login form.
I have it on line 311 of bb-includes/functions.bb-template.php in a 1.0.1 installation.
I wouldn’t modify the core bbPress file, but that’s where the text comes from. I’m not sure of the best way to modify that text though.
It says: You must be logged in to post.
I created that theme using Kakumei.
What does that say in English, and what theme did you start with to create that?
Anyone else having the problem of deleting tags within the “Structure” theme? Can I check for that code somewhere that deletes tags?
Thanks.

Sorry for the bad topic title :$
There’s bb_get_location() in functions.bb-template.php which returns the page you’re on and is above all the page conditional functions (which are based on bb_get_location() anyway)
Argh, ASP.NET is an evil possessed devil of a language… anyone got a database dump I can test with?
At first I was like
“open”, then I was all
“ASP.NET”
So yeah, uhh, anyone got a dump of a database for one of these? I don’t even have a test install I can run ASP.NET that I know of…
Edit: Nevermind, Apache can do it. Will look into a conversion script, but it’ll be written in PHP.
Hello,
Sorry for updating an old post but where do I have to put this previous code?
Thanks
The script worked for me last night and this is the second phpbb 2 board I convert. A few tips I can give whoever will try this script:
Follow the steps that come in the given file but make sure to:
1. Install bbPress 0.7 first, then upgrade to 0.8 when you have done the conversion. You can download 0,7 here: https://bbpress.org/forums/topic/download-previous-versions-of-bbpress#post-17770
Then you can go ahead and upgrade to the latest version (1.0.2). Make sure you update the settings in your admin panel (board path, name, etc) as you will need to get rid of your old config.php file when you upgrade to 0.8
2. If you’re hosted on 1and1, switch EXPORT_TO_FILE to false and AUTO_IMPORT_EXPORTED_DATA to true. Also add teh following code to your .htaccess file: AddType x-mapp-php5 .php (not sure if this is necessary but it worked for me).
3. I got an error saying that some query was empty, but it seems that the conversion went without any problems.
The WordPress.org support forums will almost certainly just be using custom-written code. What functionality are you trying to get? Someone here might know of an equivalent plugin.
Who else should I consider calling to get this theme modified?
The creator of “kakumei” – on which Garry Vander Voort based his design?
In ernest: What are the areas where you need integrating help? Is it “cosmetics” only or deep code integration? What version of bbPress would you use … and so on.
Depending on the amount of time you want to spend on it (and your willingness to get acquainted to some cut & paste coding), I’m pretty sure that most of the questions (conc. Kakumei & it’s siblings) have already been answered here & in _ck_’s forum.
It’s called in header.php:
<link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
<?php bb_stylesheet_uri(); ?>
Is there a template tag or function to get the uri to your template file? So far, all I’ve been able to find is <?php bb_option('url'); ?>, but that just returns the uri to the base directory. Is there one that will display the uri to the template directory? Like in WordPress (<?php bloginfo('template_directory'); ?>)?
This is what they said, but he wasn’t the support guy who fixed it:
It appears that they added the correct rewrite rules for WordPress to resolve the issue with the permalinks this can also by done from the WordPress admin under Permalinks.
My new issue with this plug-in is trying to get it to NOT create a new bbPress post every time I edit a WP post.
Oups, actually, it is not the case
What do you think I’ve missed?
Addendum: To check a user’s role anywhere in your code use
<?php if (bb_current_user_can('administrate')) { ?> .....
(by replacing administrate by the proper role description)
as proposed here:
https://bbpress.org/forums/topic/page-elements-viewable-only-to-admin
Brad,
I’m confronted with a similar problem (on the ‘Post’ level): Beside visitors (lurkers), I need user categories like VIP or Paying (for content) too.
Where I was able to get an idea how to eventually handle it, was by looking at _ck_’s bb_attachments.php
Put this into capabilities.php just behind the memberblock:
'visitor' => array(
'name' => __('Visitor'),
'capabilities' => array(
'participate' => false,
'read' => true
)),
Then changing her (shipping) setup code in bb_attachments.php to this here:
$bb_attachments['role']['see']="participate"; // minimum role to see list of attachments = read/participate/moderate/administrate
$bb_attachments['role']['inline']="participate"; // add PAID ! minimum role to view inline reduced images = read/participate/moderate/administrate
$bb_attachments['role']['download']="participate"; // add PAID ! minimum role to download original = read/participate/moderate/administrate
$bb_attachments['role']['upload']="moderate"; // minimum role to upload = participate/moderate/administrate (times out with post edit time)
$bb_attachments['role']['delete']="moderate"; // minimum role to delete = read/participate/moderate/administrate
I was able to exclude the ‘Visitor’ from even seeing that there are attachments to a certain post.
Hope that helps.
I had that same problem when trying to make only one register & only one login from my site with bbpress integration.
register is easy, I just wrote directly to the db from php using the hash classes included. but for login i made a kind of webservice. When I login from tomcat I just request the next url…
http://www.mysite.com/bbpress-root-dir/bb-login-check.php?user_login=USER&password=PASSWORD&remember=yes
and i wrote the next code for bb-login-check.php
<?php
// Load bbPress.
require(‘./bb-load.php’);
// Redirect to an SSL page if required.
bb_ssl_redirect();
$user = bb_login( @$_GET, @$_GET, @$_GET );
if ( $user && !is_wp_error( $user ) ) {
echo “0”;//login successfully
exit;
}else{
echo “1”; //login fail
exit;
}
?>
i hope that’s usefull…
for any question or help needed for bbpress or wordpress try fran.rod.rod [at] gmail.com
Oh Kawauso, thank you so much!! This code works perfectly!!
But do you mean that normally, I should have just one profile page for WordPress and BBpress?