lot of people seeking this, for the use of their clients. we may have this by using php code, but unfamiliar for our clients. Especially when using something “visual composer”!
Yeah, something funky going on at the moment, there will be a new login widget on the site in the next day or two that should stop/alleviate the weird redirects.
For now if you use this URL if you are not signed in you may still get a funky redirect but re-opening the URL again should take you to where you need to be 🙂
https://codex.bbpress.org/wp-admin/edit.php?post_type=page
Codex Standards & Guidelines
I have a customised version of the importer for vBulletin 5.
There are a couple of tweaks that are needed though to bring it in-line with the current importer updates. The issue is with the way our current import script is setup we need to heavily tweak not just the import script but also our main converter.php file to handle the complex SQL joins need.
If your familiar with SVN you can checkout the 2440-converter.php.2.diff​ patch in the following ticket along with vBulletin5.php, if not let me know and I’ll upload full files of these somewhere.
https://bbpress.trac.wordpress.org/ticket/2440
@dreamwork
I have a plugin that does xx topics
bbp additional shortcodes
if that is what you are after
Thats OK I found the solution..
Changed the #bbpress-forums a with the code below
#bbpress-forums .bbp-body a{
color: #000;
}
#bbpress-forums .bbp-body {
color: #000;
}
It worked fine..
Hi All,
I want list only forum category and its content(description) in right sidebar. i do below code to display category and its comtent but when i go to sub-forum page or topic page its nothing to display. i also want to display forum category and its content in sidebar of subforum and topic page.
thanks
<?php if (bbp_is_forum_category()) : ?>
<?php if ( bbp_has_forums() ) : ?>
<?php while ( bbp_forums() ) : bbp_the_forum(); ?>
<div class=”lm_link_container lm_has_sub”>
<div class=”lm_link”>
<div style=”float: left” class=”icon lm_arrow”></div>
<?php do_action( ‘bbp_theme_before_forum_title’ ); ?>
<div class=”language-title”><?php bbp_forum_title(); ?></div>
<?php do_action( ‘bbp_theme_after_forum_title’ ); ?>
<div class=”clearboth”></div>
</div>
<div class=”language-subcategory”>
<?php do_action( ‘bbp_theme_before_forum_description’ ); ?>
<div class=”language-subcategory”>“><?php bbp_forum_content(); ?></div>
<?php do_action( ‘bbp_theme_after_forum_description’ ); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<?php bbp_get_template_part( ‘feedback’, ‘no-forums’ ); ?>
<?php endif; ?>
<?php endif; ?>
Is there a way doing this by using shortcode?
Peter thankyou but I tried like this and I just did again with yours now but didn’t change anything
I did this one wich worked fine:
.bbp-breadcrumb {
color: #fff;
}
Code above changed the color to white but codes below didnt change anything.
.bbp-breadcrumb p a {color: #fff;}
.bbp-breadcrumb-home {color: #fff;}
.bbp-breadcrumb-current {color: #fff;}
I have a black background of my wordpress site and site color is white for blog but for bbpress I changed only the header and footer background colors and used the code below
#bbpress-forums a{
color: #000;
}
#bbpress-forums {
color: #000;
}
So I did this because bbp-topic has white background and in this case the links became #000 as site background but the breadcrumbs are on the top where the background is black too and I need to change the breadcrumb link color to white …

Hi , Is there any way to chnge the breadcumb link color?
I tried
.bbp-breadcrumb a{
color: #fff;
}
The code above does not change the color.
Hi all
Is there a template in the bbpress theme that appears on every page
I’m using the following code in loop-topics.php to show a link to the users profile page
<a class="bbp-profile-button" href="<?php bbp_user_profile_url( bbp_get_current_user_id() ); ?>">Profile Settings</a>
This works but only appears on the topics page.
I would like the link to be on every page.
really any plugin that has an included insertable template tag will work.
im going to use jetpack sharing as an example .
first i take every instance of each default area jetpack sharing shows.(also jetpack likes)
function jptweak_remove_share() {
remove_filter( 'the_content', 'sharing_display',19 );
remove_filter( 'the_excerpt', 'sharing_display',19 );
if ( class_exists( 'Jetpack_Likes' ) ) {
remove_filter( 'the_content', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 );
}
}
add_action( 'loop_start', 'jptweak_remove_share' );
and then i could just display it anywhere on the reply. in loop-single-reply.php
with this
if ( function_exists( 'sharing_display' ) ) {
sharing_display( '', true );
}
this code also removes it from content like posts and pages. but you can just manually insert it into your wordpress templates to with the above code.
bumping too soon ?
at least you did not create an entirely new topic
bbpress has that tabled layout by default , its your child theme
Stargazer Colloquium added that kind of layout to your theme.
what you can do is find each changed template you dont want and just replace it with some of the original bbpress template code by copying it there.
and also check on the bbpress.css in your child theme
I read many articles here but couldn’t try any solution.
I’m triùying to change the background color of bbpress header and footer and I found this article here
I’m using propanel and a custom-style.php iùwith the code below I can change the color but not background..
#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
background: <?php echo $bbpbg; ?>;
color: <?php echo $bdcolor; ?>;
}
Do you have any idea I used also this one but I didnt get success.
#bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer {
background: none repeat scroll 0% 0% <?php echo $bbpbg; ?>;
color: fff;
}
So far, so good! But is it supposed to show the label if the user hasn’t put anything in the field?
Also, something maybe to note in the description (if you haven’t already): In the Profile Fields, the Base (Primary) group has a primary, required label and field that it allows you to edit and rename, but it appears that is always the user’s “nick name”. There was confusion when I was testing because I’d originally put that one as “Gamertag” when testing, and all of a sudden everyone was showing their username the same as their gamertag. At first I thought we still had a problem, but then I figured it out.
It looks great!
Now if you’re feeling really ambitious you could include the option to add the @mention automatically, so it pulls it from the users’ profile. I certainly don’t think any but a teensy fraction of my forum users will make the effort to set it themselves, but at least I’ve got mine now with the help of your plugin! 😀
Awesome work, and I hope someday to be able to get in and play around with plugin code.
I was able to accomplish this by inserting the following code
<?php $user = get_userdata( bbp_get_reply_author_id() );
if ( !empty( $user->user_nicename ) ) {
$user_nicename = $user->user_nicename;
echo "@".$user_nicename;
} ?>
beneath the line
<?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
in loop-single-reply.php
Thanks, I checked into the activity loop and it looks like that would do the job. All this time I’ve been messing around with bbPress.
Could you give me any guidance on how to simply add the activity loop? As is probably obvious, I am very new at these things (and have been ‘winging it’ so far with code and whatnot).
Because I am trying to use a filter to change the wording within the file activity.php, within the bbpress directory, I think I’m in the correct forum.
I am trying the change the wording for the activity stream in buddypress: “jerry started the topic Doctor Sleep in the forum Horror” to “jerry added the book Doctor Sleep in the category Horror.”
I can go to bbpress/includes/extend/buddypress/activity.php and make the change there. But I prefer to do this via a filter in bp-custom.php. I am ALMOST there. Here is the filter code I have in bp-custom.php:
add_filter( 'bbp_activity_topic_create', 'change_activity_wording', 1, 4 );
function change_activity_wording($activity_text, $user_link, $topic_link, $forum_link ) {
$activity_text = sprintf( esc_html__( '%1$s added the book %2$s in the category %3$s', 'bbpress' ), $user_link, $topic_link, $forum_link );
return $activity_text;
}
What this produces is: “added the book in the category” and removes “jerry”, “Doctor Sleep”, and “Horror.” Basically, my filter is removing $user_link, $topic_link, and $forum_link. I’m thinking I need to redefine them in my function change_activity_wording? Or am I off track here?
If someone feels I should post this in the buddypress forum, let me know and I will do so.
Ok, I created the second Label with the same name and it does the same thing.
Then, just as a test, I created another Profile Field with a different name, “Gamertag2”, labeling it in the plugin. To further test, I created a separate Profile Group and made another Profile Field in there, “@mention”. I went into the plugin and labeled that as the fourth one. All the labels show up under the profiles, but none of the info, even though everything is checked to show in the plugin.
It would be SO awesome to have this work. I searched for quite awhile today to find something, and found a thread by Jacob Jacoby from like five years ago talking about integrating BuddyPress and bbPress profile fields! So it’s well overdue to have something for non-coders, and that would be sweet for it to work.
I’ll keep testing whatever you ask, so just let me know how I can help.
Edit: I kept it all set up, so you can see it at the same link above.
Pretty much anything can be done regarding bbPress/BuddyPress integration, they both play extremely well with each other, it is just really a matter of coming up with what you actually want
A couple of recent things that come to mind:
To add the @halo-diehard usernames add the following to loop-single-reply.php just after bbp_reply_author_link()
<?php bbp_user_nicename( bbp_get_reply_author_id(), array( 'before' => '<p class="bbp-user-nicename">@', 'after' => '</p>' ) ); ?>
What else did you have in mind?
Ok I think I solved my issue. I made sure the Forum Root slug was the same as the slug for the page I created to hold the forum index shortcode. It seems to be working seamlessly now.
If this WASN’T the way to do it and might give me trouble down the line, please leave a comment and let me know other ways you guys have solved this.
I have a page named “The Hive” that I placed the shortcode [bbp-forum-index] onto in order to make that my forum index page. However when i go into a forum and then back out via the breadcrumbs at the top of the page, I’m no longer on the “The Hive” page index, but the “Forums” index.
I’m pretty sure I’m doing something wrong, so how can I have it to where…
1) I create a page to host the forum index named “The Hive”
2) When I click into a forum, the breadcrumbs read “Home/The Hive/[Forum Topic]”
3) When I click on “The Hive” in the breadcrumbs, it takes me back to “The Hive” page I created.
Now I am brand new to bbPress and as such, the method I outlined above might not be the way to do it. I’m not concerned with the process so much as the end result which can hopefully be something that doesn’t confuse the visitors when I launch the site.
I was more hoping to just add some ready made code that someone on another website would not mind handing out, but thank you.
I seemed to have solved the problem myself: #happy.
I have made a child theme of twentyfourteen.
And edited the style.css in the child theme; I added this code:
.site {
margin: 0 auto;
}
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta, .page-content {
/* Original max-width: 474px */
max-width: 80%;
}
The code makes the content area wider and centers the whole website, which was a wish on my list!
Cheers!
Bert
Hi there,
I have been wandering around for a few days on the internet, spending most of the time as a guest on this bbPress forum.
I am trying to find out a way to expand the very small column containing the bbPress forum in the middle of my website http://2islands.nl/forums/forum/forum-2islands/. To be honest I am a little frustrated to find out kinds of different ways with small pieces of code added here and there in .css and .php files that don’t work for me.
Viewing from what I find in this and other fora, I am not the only one having this problem.
I am not a html programmer, but I can copy and paste very well. 🙂
Can anyone help me get my bbPress on full with (keeping my left sidebar) in a neat way, for instance by editing a bbpress.php file of something like that.
Believe me; i tried at least twenty of the tricks found in this and other fora. Nothing works. Let’s get this over with once and for all :-).
THANKS for any help!
Hi Robin. Sorry for the delayed response. It worked! Thanks for the simple fix. Now we know that shortcodes can take two inputs. If you need any of my code for use in a plugin, let me know. Though I have done things that are unique to my website, so they may not be as useful.
We can close this thread now.