given that wordpress uses bbpress, suspect loads more than 50 !
care to define what ‘the forum crashes’ actually means ?
Hello BBpress
When we have 50+ users online at any one time the forum crashes, what can be done?
How many users can bbpress handle at once?
If you write text, you will not jump to the next line.
I can not see all the text I have entered.
# Trouble issue link https://www.dolzikoo.com/forums/topic/test-post2/
# bbpress test link https://www.dolzikoo.com/forums/forum/tttssss/
Hello all,
I ma trying to change just the page title for the Forums archive but not finding anything that is current and works.
Is there possibly a modern day version of @lynq ‘s code that works with WP 4.7.3 and bbpress 2.5.12?
Or am I doing something wrong?
I’ve tried it and other variations gleaned from other posts like these:
functions.php
add_filter( ‘bbp_get_forum_archive_title’, ‘ddw_bbpress_change_forum_archive_title’ );
function ddw_bbpress_change_forum_archive_title() {
return ‘Your Forums Archive Title Here’;
and
single.php
<?php if ( is_front_page() ) { ?>
<h1 class=”entry-title”></h1>
<?php } else if (get_post_type() == ‘forum’) { ?>
<h1 class=”entry-title”>Forum Title</h1>
<?php } else { ?>
<h1 class=”entry-title”><?php the_title(); ?></h1>
<?php } ?>
The functions.php breaks WP and the single.php or forums.php does nothing.
Any pointers would be great,
Thanks
Hi @thebrandonallen,
What version of bbPress are you actually running? 2.6a
Are you running any plugins that make use of new features and functions of 2.6? I don’t know, I am using buddypress and a bunch of other plugins which I don’t think use ay bbpress functionality
Have you made any customizations to your theme that make use of new features and functions of 2.6? yes I did, but it’s more about styles and elements visibility
Thanks
Hi John,
I am realising now my post it’s not really useful considering the way I wrote it and I should have thought twice before publishing it. In fact I may have given the wrong impression. Let me elaborate….
Basically my users are facing some issue in terms of sudden disconnections/logouts and phantom posts (e.g. they create posts and forums and then they “lose” them or they cannot find them anymore).
I have never faced these issues myself, but it’s also true I don’t access my forum often.
Also, considering that I am using other plugins, I cannot be sure bbPress is actually the main reason behind the issues.
What I can tell you for sure as a general feedback is that since I’ve moved to bbPRess from phpBB the forum has suddenly died and users are pushing me to roll back to phpBB as they don’t find bbPress as user friendly.
2.6a has been there for a while and I am wondering when a stable version will be available and what new functionalities will be available.
Meanwhile, what do you suggest to make my users happy?
I am tempted to rollback to phpBB but I am also aware the resulting user experience would be quite disconnected.
Any idea on how could I make bbPress more PHPBB-Like?
Thanks,
Gio
I am also anxious to learn how to do this. I’d settle for learning how to customize the default bbpress pages, if it’s not possible to redirect. This seems extremely fundamental, but I can’t find any answers.
Downgrading is possible, but how it could be a lot of work.
- What version of bbPress are you actually running? You say alpha, but there have been betas released.
- Are you running any plugins that make use of new features and functions of 2.6?
- Have you made any customizations to your theme that make use of new features and functions of 2.6? I’ve seen at least one theme that requires 2.6 for bbPress support. Is this th
- I’ve seen at least one theme that requires 2.6 for bbPress support. Is this the case with your theme?
Hi,
BuddyPress has this built in. If you use plain bbPress, there should be plugins around for bbPress 2.5 . I have added basic mentionning in my bbP Toolkit plugin if it can help you.
Pascal.
always happened? Just started happening? new site ? old site ? Just when in bbpress ? when in everything ?
Yes, I have https in the site name. I created a new staging site with fresh WP and bbPress installs and installed the SSL on it…bbPress is still working perfectly. I also had a developer who imported users from our old Magento install into WooCommerce. I’m waiting on him to see if he has any insight into whether his work might be causing this issue.
Perhaps this plugin will help
bbPress Moderation
Devs are busy with version 2.6 at the mo, so suspect any new requests are not being looked at.
Has anyone from bbPress seen this yet? Some kind of response would be much appreciated. Thank you.
Hello! I really like the way this forum (bbPress support) allows users to manage their profile. Is it using a particular plugin? My website still displays the standard WordPress black bar across the top of the page for registered users who are logged in.
Thank you!
Hi
My theme author tells me I need to identify the <body> tag class for each of the bbPress pages I want to customize, so that I can target specific pages with custom CSS. I’ve tried inspecting the Forum page through the browser but couldn’t identify anything that looked like the example he provided (postid-####). Could some kind soul please help by listing the <body> tag classes for the bbPress pages, or at least the forum index page?
Hello! Is being able to use @ to mention a user a feature that is available in bbPress? Do I need to do anything specific to get it functioning properly? Right now, it doesn’t happen for me in my forum.
I tried searching for answers but came up with empty handed. Thank you so much for your help.
Thank you so much.
Hi @josnierop,
I know the basics and that has always been useful. Happy to see you’re fixed.
PS. Kom gerust op de Nederlandse chat voor verdere of algemene vragen, we zijn niet allemaal WordPress/bbPress nerds daar 🙂
I added some custom CSS to my theme which did the trick.
.bbpress #sidebar {
display:none;
}
body.bbpress div#content{
width:100%;
}
Might help you.
Thank you, Robin W, for saving me from banging my head against a brick wall!
So, another possibility: is there a way of adding CSS to Forums, Topics and Replies (eg opening in Visual Composer)? I have the CSS to hide the one-page theme menu on a page, but don’t know how to add this to the bbPress entries.
Cheers!
Is there a (simple :)) way I can move the Forums, Topics and Replies to sections within the one-page design
There’s probably not a complicated way either !
Sorry but bbpress works on creating links, so it’s on different pages at the core.
Tho still trying to figure out how to replace default classes.
Code in BBpress:
// Link class
$link_class = ' class="bbp-author-' . esc_attr( $r['type'] ) . '"';
// Add links if not anonymous and existing user
if ( empty( $anonymous ) && bbp_user_has_profile( bbp_get_reply_author_id( $reply_id ) ) ) {
// Assemble the links
foreach ( $author_links as $link => $link_text ) {
$link_class = ' class="bbp-author-' . $link . '"';
$author_link[] = sprintf( '<a href="%1$s"%2$s%3$s>%4$s</a>', esc_url( $author_url ), $link_title, $link_class, $link_text );
}
Hook:
function hw_get_reply_author_link($link_class) {
$link_class = preg_replace('/ class="bbp-author-"/','/ class="myclass" /',$link_class);
return $link_class;
}
add_filter('bbp_get_reply_author_link','hw_get_reply_author_link');
Cant make this work. Well output itself works as should, but it doesn’t replace bbp-author- to myclass. Can you tell me what’s wrong with it?
I tried this again on a different staging site with a fresh bbpress install and it’s the same result…when anyone replies to a topic it automatically redirects back to /wp-admin.
I’m trying this Peter’s Login Redirect plugin…but logging in and out is not the issue.
Could this be an issue with my SSL? With my host? Research on those issues is not turning up anything for me. Is there anything else that I can try?