Yes, I want to change the name/word “Forums” to something else, this is important to me.

Thanks in advance
Yes, I want to change the name/word “Forums” to something else, this is important to me.

Thanks in advance
Hello,
I am creating my forum site and ideally I do not want the user profile to be clickable is there a setting or some code I can add to disable the links to the user profile/author links? If that isn’t an option does anyone know how I would adjust the styling within elementor for these pages and build a template for it?
I am using BBpress 2.6.11 for my forums. All posts creation/editting is done by a superuser account. This all has been working fine for years, but recently I noticed that some posts are missing. Links to some posts take me to 404 pages, and searching the forum for the contents of those posts fails (no result)
I have no idea what is happening. Can someone help me find & recover the posts, and fix whatever is wrong?
(I don’t run akismet, or any spam filter, as that showed up in a number of bbpress posts about missing posts)
Hi.
I’m running BBpress (Version 2.6.11) on NewOrleansSaints.dk with the DIVI theme.
LINK: NewOrleansSaints.dk
If you click on a users profile link in the widgets the profile is displayed, but seems to be broken from the design.
What can I do to fix this issue ?
Hello,
No links, as we are not yet far enough to be stuck there, but the website is a wildlife travel blog and marketplace (as well as members area). I am using a plugin called Armember to create a few members areas within my site. I am using bbpress for much of the stuff that the members can do (mostly discussion forums of various kinds)
I am looking for two things, I found small plugin extensions for BBpress for each, but both have generated errors, and the second crashed the whole website.
Firstly, I am looking for a plugin which will list all contributions that a member makes, on their profile page. There are going to be a variety of forums as well as direct contact, but I am eager to allow people to have a kind of simple blog within their profile. I found “posts on profile” plugin to do this. This way, any post made on any forum, will be listed. Does anyone known another plugin which would do the same thing? Posts on profile is 10 years old, and so not surprisingly, it is causing errors. Alternatively, is there some sort of code I can add, which will do the job without a plugin? cant believe that this is a rare need?
The other thing I was looking for, was the ability for readers to be able to rank posts – BBp core has this capability, but on installing BBp core, the whole website crashed instantly. As such, rather than trying to work out what plugin is crashing with it, it is likely to be better to find another. I am simply wanting to be able to give people the ability to rank other peoples posts, so that we can sort on a sensible metric (this cant be unique to BBP Core)
Any help greatly appreciated.
Hello
I am not very experienced in coding, as the page has been built by an agency.
Means that the changes that now have to be placed has to be learned the hard way 🙂
But the forum here gave me already some helpful inputs.
As we are running a wordpress site including a forum, there is still some adaptation to be done.
To give you a bit of insights. The versions we are running:
Site URL https://mission-invictus.com
PHP Version 8.1.31
WP Version 6.7.1
Multisite False
Theme Mission Invictus Child Theme 1.0
Theme Type Traditional Theme
bbPress Version 2.6.11
Plugin Version 6.1.6
Active Plugins Name and Version
– active1 WPML Multilingual CMS 4.6.15
– active2 Advanced Custom Fields PRO 6.3.11
– active3 Akismet Anti-spam: Spam Protection 5.3.5
– active4 bbp style pack 6.1.6
– active5 bbPress 2.6.11
– active6 Crowdsignal Forms 1.7.2
– active7 Event Tickets 5.18.0
– active8 GD bbPress Attachments 4.7.3
– active9 GD bbPress Tools 3.5.3
– active10 Site Kit by Google 1.142.0
– active11 GP Premium 2.4.1
– active12 Gutenberg 19.9.0
– active13 If Menu – Visibility control for menus 0.19.2
– active14 Jetpack Boost 3.6.1
– active15 Jetpack 14.2-a.3
– active16 Layout Grid 1.8.4
– active17 MemberPress Registration Restrictions 1.0.7
– active18 MemberPress Pro 1.11.33
– active19 Page Optimize 0.5.6
– active20 Crowdsignal Polls & Ratings 3.1.2
– active21 Popup Maker 1.20.3
– active22 SVG Support 2.5.8
– active23 Advanced Editor Tools 5.9.2
– active24 User Switching 1.9.1
– active25 WordPress Importer 0.8.3
– active26 Yoast SEO Premium 24.1
– active27 Yoast SEO 24.1
– active28 WP Mail Logging 1.13.1
– active29 Nested Pages 3.2.10
How can I set the default style setting of the visual editor to it’s standard?
It shall only be the buttons within the visual editor and not the ones for the rest of the forum.
Actually the button settings are inherited form the customized theme and it looks horrible within the editor.
Issue: bbPress User Roles and Hidden BuddyPress Group Forums
I’ve encountered a problem where bbPress user roles cannot be edited, which creates a conflict when using bbPress forums within hidden BuddyPress Groups.
The Problem:
Members of hidden BuddyPress Groups can read the associated group forums but cannot post.
The rest of BuddyPress and bbPress functionality works as expected, but this limitation seems to stem from the bbPress Participant role.
What I’ve Tried:
I attempted to modify the Participant role using the Members plugin, but bbPress roles appear to be non-editable.
According to a support topic on Members, this restriction was recently enforced by bbPress.
https://wordpress.org/support/topic/members-plugin-unable-to-edit-bbpress-plugin-roles/
Question:
Does anyone know how to override or adjust bbPress roles?
Hi
I am not very talented in wordpress. The site has even been built by wordpress themself. But actually the support of wordpress has diverted me to you, to solve my issues.
Having mentioned my poor knowledge, I have discovered, that on our page the plugin of bbPress is installed and running in the version 2.6.11 and it is active.
But the menu “Forum” is not shown in either the admin interface style “classic” nor in the “default” style.
I was using as well the stating page to disable all possible plugin’s. Without success.
Is there a concurring plugin such as memberpress?
How can I make the menu visible to admin the forum?
Thanks for any valuable hint.
Hey guys,
How to replace the permalink structure from:
{domain}{forum-slug}{usernicename}
To:
{domain}{forum-slug}{First_name-Last_name}
Here is my code snippet hat change the structure of Permalink, but I am getting 404
function custom_bbp_get_user_profile_url( $url, $user_id, $user_nicename ) {
// Get the user data
$user_info = get_userdata( $user_id );
// Check if user info is available
if ( $user_info ) {
// Get first name and last name
$first_name = isset( $user_info->first_name ) ? $user_info->first_name : '';
$last_name = isset( $user_info->last_name ) ? $user_info->last_name : '';
// Create custom user_nicename as "First Last"
$custom_nicename = trim( $first_name . ' ' . $last_name );
// Return the URL with updated user_nicename
return str_replace( $user_nicename, sanitize_title($custom_nicename), $url );
}
// If user info is not available, return the original URL
return $url;
}
// Hook the function into the filter
add_filter( 'bbp_get_user_profile_url', 'custom_bbp_get_user_profile_url', 10, 3 );
When I reply to a topic in bbpress, it gets counted as a “post” when a visitor views the site. Is it possible to make it count as a “Voice”?
I think the correct answer is “Replies” and not “Voices”, but what do you think?
When I look at the administration screen, the topic with the reply is counted as a “Replies”, but when I look at the site from the visitor’s side, it is counted as a “post”, and the number is the total number of posts in the topic (+1).
If someone could tell me, it would be helpful.
Also, why does it say “This topic is empty” when I open a topic?
That’s all, thank you in advance.
Usage environment
WordPress 6.5.5 running Twenty Twenty-One theme.
bbPress Version 2.6.11 (Only one plugin is needed)
PHP version 8.2.22
site:https://xs748057.xsrv.jp/test-bbpress/forums/forum/about-micro-four-thirds/